mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
22 lines
685 B
Bash
22 lines
685 B
Bash
# $Id: PKGBUILD 37568 2009-05-03 02:42:24Z eric $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=tpb
|
|
pkgver=0.6.4
|
|
pkgrel=2
|
|
pkgdesc="Access the special buttons on a ThinkPad-Laptop using xosd"
|
|
arch=('i686' 'x86_64')
|
|
url="http://savannah.nongnu.org/projects/tpb/"
|
|
license=('GPL')
|
|
depends=('xosd' 'glibc')
|
|
backup=('etc/tpbrc')
|
|
source=(http://savannah.nongnu.org/download/tpb/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('563b544fbedcc1763130a0bca1ad63b6')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc mandir=/usr/share/man || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|