summaryrefslogtreecommitdiff
path: root/community/kmod/PKGBUILD
blob: 94a4def89deaf9b9180ba3e8f87c4b7894c134eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: