diff options
Diffstat (limited to 'abs/core-testing/util-linux-ng/PKGBUILD')
-rw-r--r-- | abs/core-testing/util-linux-ng/PKGBUILD | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/abs/core-testing/util-linux-ng/PKGBUILD b/abs/core-testing/util-linux-ng/PKGBUILD index ef003b1..6653137 100644 --- a/abs/core-testing/util-linux-ng/PKGBUILD +++ b/abs/core-testing/util-linux-ng/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 84963 2010-07-05 23:24:20Z thomas $ +# $Id: PKGBUILD 86506 2010-08-02 14:22:19Z tpowa $ # Maintainer: judd <jvinet@zeroflux.org> pkgname=util-linux-ng pkgver=2.18 -pkgrel=2 +pkgrel=3 pkgdesc="Miscellaneous system utilities for Linux" url="http://userweb.kernel.org/~kzak/util-linux-ng/" arch=('i686' 'x86_64') @@ -14,11 +14,15 @@ provides=('linux32' 'util-linux') license=('GPL2') options=('!libtool') source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.18/${pkgname}-${pkgver}.tar.bz2 - fix-findmnt.patch) + fix-findmnt.patch + util-linux-ng-nilfs2.patch + util-linux-ng-cfdisk.patch) optdepends=('perl: for chkdupexe support') install=util-linux-ng.install md5sums=('2f5f71e6af969d041d73ab778c141a77' - '7346673932b165faadde2fa2a9c1cd3a') + '7346673932b165faadde2fa2a9c1cd3a' + 'aa1f210aa22363605363b7b14b8f7a78' + 'e6d9309d44c258b25a7fb0b70f94f94e') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -27,6 +31,10 @@ build() { mkdir -p "${pkgdir}/var/lib/hwclock" || return 1 # fix findmnt patch -p1 -i "${srcdir}/fix-findmnt.patch" + # add nilfs2 support, included in next upstream release + patch -Np1 -i "${srcdir}/util-linux-ng-nilfs2.patch" + # fix cfdisk partition changing, included in next upstream release + patch -Np1 -i "${srcdir}/util-linux-ng-cfdisk.patch" autoreconf || return 1 automake || return 1 |