4c7ed1ea02
The pkg-config program retrieves information about installed libraries, usually for the purposes of compiling against and linking to them. ExtUtils::PkgConfig is a very simplistic interface to this utility, intended for use in the Makefile.PL of perl extensions which bind libraries that pkg-config knows. It is really just boilerplate code that you would've written yourself.
20 lines
541 B
Makefile
20 lines
541 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/04/19 17:23:15 xtraeme Exp $
|
|
#
|
|
|
|
DISTNAME= ExtUtils-PkgConfig-1.03
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=ExtUtils/}
|
|
|
|
MAINTAINER= xtraeme@NetBSD.org
|
|
HOMEPAGE= http://gtk2-perl.sourceforge.net/
|
|
COMMENT= Simplistic perl interface to pkg-config
|
|
|
|
PERL5_REQD= 5.8
|
|
USE_BUILDLINK3= yes
|
|
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/ExtUtils/PkgConfig/.packlist
|
|
|
|
.include "../../devel/pkgconfig/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|