diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-05 03:54:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-05 03:57:49 +0000 |
commit | 76cfb32d2e7a4dfb7d67451b1a2e11927669efc0 (patch) | |
tree | 5bab76b7c0b76e770ff2dd80fb4c8e746df6b5dc /testing/makekit | |
parent | d8bb6d69c0ed8f24f8b751f2ee564ca8e682d3e7 (diff) | |
download | aports-76cfb32d2e7a4dfb7d67451b1a2e11927669efc0.tar.bz2 aports-76cfb32d2e7a4dfb7d67451b1a2e11927669efc0.tar.xz |
testing/makekit: new aport
modular build system for POSIX environments
http://mkbuild.sourceforge.net/
Diffstat (limited to 'testing/makekit')
-rw-r--r-- | testing/makekit/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/makekit/APKBUILD b/testing/makekit/APKBUILD new file mode 100644 index 000000000..18ed2b2e3 --- /dev/null +++ b/testing/makekit/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=makekit +pkgver=0.1 +pkgrel=0 +pkgdesc="modular build system for POSIX environments" +url="http://mkbuild.sourceforge.net/" +arch="noarch" +license="BSD" +depends= +depends_dev= +makedepends="$depends_dev" +install="" +subpackages= +source="http://downloads.sourceforge.net/project/mkbuild/makekit-$pkgver.tar.gz" + +_builddir="$srcdir"/makekit-$pkgver/build +prepare() { + local i + cd "$_builddir"/.. + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + mkdir -p "$_builddir" + cd "$_builddir" + ../configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="46b64e4a029b9b7ae09b24230cc5dc81 makekit-0.1.tar.gz" |