diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-14 09:36:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-16 11:18:17 +0000 |
commit | c53dca816490c4c81e0e2c5d4adc5c3a0701ca8d (patch) | |
tree | 2827cb47fe68bbfea89dd1254d6ae9ec46dd9ccf /testing | |
parent | 21c0e59991fb8e571801a0323c5d5e50ec521338 (diff) | |
download | aports-c53dca816490c4c81e0e2c5d4adc5c3a0701ca8d.tar.bz2 aports-c53dca816490c4c81e0e2c5d4adc5c3a0701ca8d.tar.xz |
main/util-linux-ng: moved from testing. use gnu sed. sfdisk subpkg.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/util-linux-ng/APKBUILD | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/testing/util-linux-ng/APKBUILD b/testing/util-linux-ng/APKBUILD deleted file mode 100644 index 6a0dbc809f..0000000000 --- a/testing/util-linux-ng/APKBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Contributor: Leonardo Arena <rnalrd@gmail.com> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=util-linux-ng -pkgver=2.16 -pkgrel=0 -pkgdesc="Random collection of Linux utilities" -arch="" -url="http://kernel.org/~kzak/util-linux-ng/" -license="GPL-2 GPL Public Domain" -depends= -makedepends="zlib-dev" -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" - -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 install DESTDIR=$pkgdir -} - -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" - depends= - mkdir -p "$subpkgdir"/lib - mv "$pkgdir"/lib/libblkid* "$subpkgdir"/lib/ -} - - -md5sums="f6aba93a43b7736782d7aaa3718c45e3 util-linux-ng-2.16.tar.gz" |