blob: 072972a7ff1056462e930bc9099dd725acd86037 (
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
|
# New ports collection makefile for: pkgconf
# Date created: 2012-07-22
# Whom: Baptiste Daroussin <bapt@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pkgconf
PORTVERSION= 0.8.4
CATEGORIES= devel
MASTER_SITES= http://nenolod.net/~nenolod/distfiles/
MAINTAINER= bapt@FreeBSD.org
COMMENT= pkg-config compatible utility which does not depend on glib
LICENSE= BSD
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pkg-config-dir=${PREFIX}/libdata/pkgconfig \
--with-system-libdir=/usr/lib \
--with-system-includedir=/usr/include
USE_BZIP2= yes
CONFLICTS_INSTALL= pkg-config-*
post-install:
${LN} -sf ${PREFIX}/bin/pkgconf ${PREFIX}/bin/pkg-config
.include <bsd.port.mk>
|