summaryrefslogtreecommitdiff
path: root/community/xkbsel/PKGBUILD
blob: cdbf53f43ee9c0ba915c179c6e3cabe9fe20107f (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
26
27
28
29
30
31
32
33
34
35
36
37
# $Id: PKGBUILD 100458 2013-11-04 12:14:04Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=xkbsel
pkgver=0.13
pkgrel=6
pkgdesc="framework for defining, selecting and indicating XKB keyboard mappings"
arch=('i686' 'x86_64')
url="http://www.meduna.org/sw_xkbsel_en.html"
license=('GPL')
depends=('gdbm' 'libxaw')
makedepends=('patch' 'xkeyboard-config')
source=(http://www.meduna.org/code/$pkgname-$pkgver.tar.gz
	build-fix.patch)
md5sums=('c82196344ef920a072f413df85b9dc00'
         'dee0f7de8618d9eff073942f0e08f030')

build() {
  cd $srcdir/$pkgname-$pkgver

  autoreconf

  patch -Np1 <../build-fix.patch
  export CFLAGS="$CFLAGS -I/usr/include/gdbm -DHAVE_NDBM_H"
  export LDFLAGS="-lgdbm -lgdbm_compat"

  ./configure --prefix=/usr --localstatedir=/var/lib --sysconfdir=/etc/xkbsel \
		--build=`uname -m` --host=`uname -m` --target=`uname -m` \
		--mandir=/usr/share/man
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR=$pkgdir install
}