diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/numlockx/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/numlockx/PKGBUILD')
-rw-r--r-- | extra/numlockx/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/numlockx/PKGBUILD b/extra/numlockx/PKGBUILD new file mode 100644 index 000000000..c30fdd0d6 --- /dev/null +++ b/extra/numlockx/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 75639 2010-04-02 01:32:53Z dgriffiths $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Contributor: Travis Willard <travisw@wmpub.ca> +# Contributor: Thayer Williams <thayer@archlinux.org> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=numlockx +pkgver=1.2 +pkgrel=1 +pkgdesc="Turns on the numlock key in X11" +arch=('i686' 'x86_64') +license=('MIT') +url="http://ktown.kde.org/~seli/numlockx/" +depends=('libxtst') +source=(http://ktown.kde.org/~seli/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('be9109370447eae23f6f3f8527bb1a67') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr x_includes=/usr/include/X11 \ + x_libraries=/usr/lib || return 1 + make || return 1 +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make prefix=${pkgdir}/usr install || return 1 + + # Install the custom MIT license + install -D LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1 +} |