blob: da1bfb677518ae32597c1d539f1fbe67aea511f7 (
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
|
# New ports collection makefile for: argp-standalone
# Date created: 1 March 2004
# Whom: Sergey Matveychuk <sem@ciam.ru>
#
# $FreeBSD$
#
PORTNAME= argp-standalone
PORTVERSION= 1.3
CATEGORIES= devel
MASTER_SITES= http://www.lysator.liu.se/~nisse/misc/
MAINTAINER= sem@ciam.ru
COMMENT= Standalone version of arguments parsing functions from GLIBC
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
PLIST_FILES= lib/libargp.a include/argp.h
do-install:
@cd ${WRKSRC}; \
${INSTALL_DATA} libargp.a ${PREFIX}/lib; \
${INSTALL_DATA} argp.h ${PREFIX}/include
.include <bsd.port.mk>
|