From 802749951e95d99cf05744570cd8fac4c039cfc1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 19 May 2010 11:03:21 +0200 Subject: [PATCH] Added bsdbuild-2.7 build template. --- srcpkgs/bsdbuild/template | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 srcpkgs/bsdbuild/template diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template new file mode 100644 index 00000000000..c13217d0707 --- /dev/null +++ b/srcpkgs/bsdbuild/template @@ -0,0 +1,35 @@ +# Template file for 'bsdbuild' +pkgname=bsdbuild +version=2.7 +distfiles="http://stable.hypertriton.com/bsdbuild/$pkgname-$version.tar.gz" +build_style=configure +configure_args="--prefix=/usr --with-manpages --with-manlinks" +make_install_args=" +SHAREDIR=${XBPS_DESTDIR}/${pkgname}-${version}/usr/share/bsdbuild +BINDIR=${XBPS_DESTDIR}/${pkgname}-${version}/usr/bin +MANDIR=${XBPS_DESTDIR}/${pkgname}-${version}/usr/share/man" +short_desc="Simple, self-contained and portable build system" +maintainer="Juan RP " +checksum=b84dc117a353c0ade3cda9696d160983094cb86ff2262fc2bb9060e46f54a8ba +long_desc=" + BSDBuild is a simple, self-contained and portable build system derived from + the traditional 4.4BSD share/mk files. BSDBuild uses BSD-style makefiles, + but without BSD make extensions (it uses standard Bourne script fragments + instead), so the build system is portable to most operating systems and make + flavors. + + You never need to "regenerate" your makefiles when using BSDBuild, they are + edited directly. This is one major advantage of BSDBuild over systems which + use generated makefiles: BSDBuild is implemented as a library. + + BSDBuild can generate Bourne-type configure scripts. The base distribution + currently includes over 90 built-in tests for detecting and testing the + compatibility of various software, and writing new tests is easy." + +noarch=yes +Add_dependency full perl + +pre_install() +{ + install -d ${DESTDIR}/usr/bin +}