From e4a5730eb358cb0d78bc022204ddccac068c2bf2 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 25 Feb 2012 23:15:06 +0000 Subject: Sat Feb 25 23:15:06 UTC 2012 --- testing/util-linux/PKGBUILD | 61 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 testing/util-linux/PKGBUILD (limited to 'testing/util-linux/PKGBUILD') diff --git a/testing/util-linux/PKGBUILD b/testing/util-linux/PKGBUILD new file mode 100644 index 000000000..db0001a93 --- /dev/null +++ b/testing/util-linux/PKGBUILD @@ -0,0 +1,61 @@ +# $Id: PKGBUILD 151117 2012-02-25 00:42:27Z tomegun $ +# Maintainer: Tom Gundersen +# Contributor: judd + +pkgname=util-linux +pkgver=2.21 +pkgrel=2 +pkgdesc="Miscellaneous system utilities for Linux" +url="http://www.kernel.org/pub/linux/utils/util-linux/" +arch=('i686' 'x86_64') +groups=('base') +depends=('udev') +conflicts=('util-linux-ng') +provides=("util-linux-ng=${pkgver}") +license=('GPL2') +options=('!libtool') +source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar.xz + libmount-canonicalize-all-paths-from-fs-tab.patch + lib-canonicalize-always-remove-tailing-slash.patch + libmount-canonicalize-targets-from-fstab-on-mount-a.patch + mount-new-cleanup-mount-a-return-codes.patch) +optdepends=('perl: for chkdupexe support') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + # hardware clock + sed -e 's%etc/adjtime%var/lib/hwclock/adjtime%' -i include/pathnames.h + + patch -p1 -i ../libmount-canonicalize-all-paths-from-fs-tab.patch + patch -p1 -i ../lib-canonicalize-always-remove-tailing-slash.patch + patch -p1 -i ../libmount-canonicalize-targets-from-fstab-on-mount-a.patch + patch -p1 -i ../mount-new-cleanup-mount-a-return-codes.patch + + ./configure --prefix=/usr \ + --libdir=/usr/lib \ + --enable-write \ + --enable-raw \ + --disable-wall \ + --enable-new-mount + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + cd "${pkgdir}" + + install -dm755 var/lib/hwclock + + # delete stray empty dir, fixed upstream + rm -r usr/share/man/ru +} +md5sums=('208aa058f4117759d2939d1be7d662fc' + 'c4011222a19b020d9b8465c3c7e443f6' + '8c1bf7b10e22e2b835441e6ae2d804d6' + '7b92423c588ed35229a9a166349c29a9' + 'c483ab2d52609b5857d096b256a5075c') -- cgit v1.2.3-54-g00ecf