blob: 6e28fa3d727285e47ed59a58729afb0ecb6ed9df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# New ports collection makefile for: str
# Date Created: 09 Jan 2000
# Whom: Ralf S. Engelschall
#
# $FreeBSD$
#
PORTNAME= str
PORTVERSION= 0.9.9
CATEGORIES= devel
MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/str/
MAINTAINER= ports@FreeBSD.org
COMMENT= Generic String Library
USE_LIBTOOL_VER= 15
INSTALLS_SHLIB= yes
MAN1= str-config.1
MAN3= str.3
.include <bsd.port.pre.mk>
post-build:
@${ECHO_MSG} "===> Use 'make test' to run a quick test suite."
test:
@cd ${WRKSRC} && ${MAKE} test
.include <bsd.port.post.mk>
|