summaryrefslogtreecommitdiff
path: root/community/kmod/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/kmod/PKGBUILD')
-rw-r--r--community/kmod/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/kmod/PKGBUILD b/community/kmod/PKGBUILD
new file mode 100644
index 000000000..94a4def89
--- /dev/null
+++ b/community/kmod/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sebastien Luttringer <seblu@aur.archlinux.org>
+
+pkgname=kmod
+pkgver=1
+pkgrel=1
+pkgdesc='A set of tools to handle common tasks with Linux kernel modules'
+arch=('i686' 'x86_64')
+url='http://git.profusion.mobi/cgit.cgi/kmod.git/'
+license=('GPL2')
+options=('!libtool')
+source=("http://packages.profusion.mobi/$pkgname/$pkgname-$pkgver.tar.bz2")
+md5sums=('c80f3d430304ad78279353788c18681f')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et: