summaryrefslogtreecommitdiff
path: root/testing/util-linux
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-05-09 22:34:00 +0000
committerroot <root@rshg047.dnsready.net>2011-05-09 22:34:00 +0000
commitbbb460f85242e6ac03f47b74b9d0be66ff089ac4 (patch)
treec05f121bc450e6f4528e13b4eef371f3b0d2bc0f /testing/util-linux
parentd2f2d3b5c845807249680c275031f94047f9e762 (diff)
Mon May 9 22:34:00 UTC 2011
Diffstat (limited to 'testing/util-linux')
-rw-r--r--testing/util-linux/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/util-linux/PKGBUILD b/testing/util-linux/PKGBUILD
new file mode 100644
index 000000000..13140997a
--- /dev/null
+++ b/testing/util-linux/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 123152 2011-05-09 00:21:36Z allan $
+# Maintainer:
+# Contributor: judd <jvinet@zeroflux.org>
+
+pkgname=util-linux
+pkgver=2.19.1
+pkgrel=1
+pkgdesc="Miscellaneous system utilities for Linux"
+url="http://userweb.kernel.org/~kzak/util-linux-ng/"
+arch=('i686' 'x86_64')
+groups=('base')
+depends=('bash' 'ncurses>=5.7' 'zlib' 'filesystem')
+replaces=('linux32' 'util-linux-ng')
+conflicts=('linux32' 'util-linux-ng' 'e2fsprogs<1.41.8-2')
+provides=('linux32' "util-linux-ng=${pkgver}")
+license=('GPL2')
+options=('!libtool')
+source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.19/${pkgname}-${pkgver}.tar.bz2)
+optdepends=('perl: for chkdupexe support')
+md5sums=('3eab06f05163dfa65479c44e5231932c')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ # hardware clock
+ sed -e 's%etc/adjtime%var/lib/hwclock/adjtime%' -i hwclock/hwclock.c
+ ./configure --enable-arch --enable-write --enable-raw --disable-wall --enable-partx
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ install -dm755 "${pkgdir}/var/lib/hwclock"
+ make DESTDIR="${pkgdir}" install
+}