blob: dfc0c3656c4968784cc99215abccf882ebfb9f93 (
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
|
# Created by: Sergey Matveychuk <sem@ciam.ru>
# $FreeBSD$
PORTNAME= argp-standalone
PORTVERSION= 1.3
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://www.lysator.liu.se/~nisse/misc/ \
LOCAL/sem
MAINTAINER= ports@FreeBSD.org
COMMENT= Standalone version of arguments parsing functions from GLIBC
LICENSE= LGPL20+ PD
LICENSE_COMB= multi
USES= autoreconf libtool
USE_CSTD= gnu89
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
PLIST_FILES= lib/libargp.a \
lib/libargp.so lib/libargp.so.0 lib/libargp.so.0.0.0 \
include/argp.h
post-install:
${INSTALL_DATA} ${WRKSRC}/argp.h ${STAGEDIR}${PREFIX}/include
.include <bsd.port.mk>
|