blob: ffc82b91722b5f4e333b71b84475617802bbd745 (
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
|
PORTNAME= getline
PORTVERSION= 3.9
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://rodrigo.osorio.free.fr/freebsd/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}-src
MAINTAINER= rodrigo@FreeBSD.org
COMMENT= Small, portable, and easy to use command line library
LICENSE= MIT
USE_LDCONFIG= yes
MAKE_ENV+= AR="${AR}" \
CC="${CC}" \
INST_INCDIR="${STAGEDIR}${PREFIX}/include" \
INST_LIBDIR="${STAGEDIR}${PREFIX}/lib" \
INST_MANDIR="${STAGEDIR}${PREFIX}/share/man" \
INSTALL="${INSTALL}" \
LN="${LN}" \
RANLIB="${RANLIB}"
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
.include <bsd.port.mk>
|