Date: Tuesday, December 20, 2011 @ 21:17:11 Author: dreisner Revision: 145280
add new pkg: kmod This will eventually replace module-init-tools Added: kmod/ kmod/repos/ kmod/trunk/ kmod/trunk/PKGBUILD ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Added: kmod/trunk/PKGBUILD =================================================================== --- kmod/trunk/PKGBUILD (rev 0) +++ kmod/trunk/PKGBUILD 2011-12-21 02:17:11 UTC (rev 145280) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Dave Reisner <[email protected]> + +pkgname=kmod +pkgver=2 +pkgrel=1 +pkgdesc="interface to kernel module operations" +arch=('i686' 'x86_64') +url="http://git.profusion.mobi/cgit.cgi/lucas/kmod/" +license=('GPL2') +depends=('glibc' 'zlib') +options=('!libtool') +source=("http://packages.profusion.mobi/$pkgname/$pkgname-$pkgver.tar.xz") +md5sums=('6017364434377f6724f749d7a28c5d7a') + +build() { + cd "$pkgname-$pkgver" + + ./configure --libdir=/lib --enable-zlib + make +} + +check() { + make -C "$pkgname-$pkgver" check +} + +package() { + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install +} + +# vim: ft=sh syn=sh et Property changes on: kmod/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id
