diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2009-08-17 06:04:49 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2009-08-17 06:04:49 +0000 |
commit | 642737c0f027123a566abb8c7c6058aa346ac0aa (patch) | |
tree | f048a9f38b58afdbf770b1e3ccd81f0688d5b278 /main/util-linux-ng/APKBUILD | |
parent | e6ea3fff2c64fb7b4fdc79d02a3c85928766cf81 (diff) | |
parent | bce3e5f56fe9b0bc427c029ec50867613cebe4ef (diff) | |
download | aports-642737c0f027123a566abb8c7c6058aa346ac0aa.tar.bz2 aports-642737c0f027123a566abb8c7c6058aa346ac0aa.tar.xz |
Merge branch 'master' of git://dev.alpinelinux.org/aports
Diffstat (limited to 'main/util-linux-ng/APKBUILD')
-rw-r--r-- | main/util-linux-ng/APKBUILD | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/main/util-linux-ng/APKBUILD b/main/util-linux-ng/APKBUILD new file mode 100644 index 0000000000..6864105181 --- /dev/null +++ b/main/util-linux-ng/APKBUILD @@ -0,0 +1,65 @@ +# Contributor: Leonardo Arena <rnalrd@gmail.com> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=util-linux-ng +pkgver=2.16 +pkgrel=1 +pkgdesc="Random collection of Linux utilities" +arch="" +url="http://kernel.org/~kzak/util-linux-ng/" +license="GPL-2 GPL Public Domain" +depends= +# use GNU sed til bb sed is fixed +makedepends="zlib-dev sed" +install= +source="http://www.kernel.org/pub/linux/utils/util-linux-ng/v2.16/$pkgname-$pkgver.tar.gz" +subpackages="$pkgname-doc $pkgname-dev libuuid libblkid sfdisk" +replaces="e2fsprogs" + +build() { + cd "$srcdir/$pkgname-$pkgver" + sed -e 's/versionsort/alphasort/g'\ + -e 's/strverscmp.h/dirent.h/g' \ + -i mount/lomount.c + + ./configure --prefix=/usr \ + --disable-uuidd \ + --disable-nls \ + --disable-tls \ + --disable-kill \ + --disable-init \ + --without-ncurses \ + --without-pam + + make || return 1 + make -j1 install DESTDIR="$pkgdir" + # use pkg-config + rm -f "$pkgdir"/usr/lib/*.la +} + +dev() { + default_dev + replaces="e2fsprogs-dev" +} + +libuuid() { + pkgdesc="DCE compatible Universally Unique Identifier library" + depends= + mkdir -p "$subpkgdir"/lib + mv "$pkgdir"/lib/libuuid* "$subpkgdir"/lib/ +} + +libblkid() { + pkgdesc="Block device identification library from util-linux-ng" + depends= + mkdir -p "$subpkgdir"/lib + mv "$pkgdir"/lib/libblkid* "$subpkgdir"/lib/ +} + +sfdisk() { + pkgdesk="Partition table manipulator from util-linux-ng" + depends= + mkdir -p "$subpkgdir"/sbin + mv "$pkgdir"/sbin/sfdisk "$subpkgdir"/sbin/ +} + +md5sums="f6aba93a43b7736782d7aaa3718c45e3 util-linux-ng-2.16.tar.gz" |