blob: 7766541d17adfafaab81cc9f6fd369650ed34076 (
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
|
# Maintainer: Arne Brücher <archlinux [at] arne-bruecher [dot] de>
# Contributor: Matthew of Boswell <mattboswell at lockmail dot us>
# Contributor: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=xbl
pkgver=1.1.6
pkgrel=2
pkgdesc="XBlockOut: X Window block dropping game in 3 Dimension"
arch=('i686' 'x86_64')
url="http://perso.univ-lyon1.fr/thierry.excoffier/XBL/"
license=('GPL')
depends=('libxext')
makedepends=('imake' 'autoconf')
source=("http://perso.univ-lyon1.fr/thierry.excoffier/XBL/$pkgname-$pkgver.tar.gz")
sha1sums=('05b368c20fd16a99346540a5352a011b56926ef3')
build() {
cd $pkgname-$pkgver
autoconf
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib"/{xbl,X11/app-defaults}
install -d "$pkgdir/usr/share/man/man1"
yes "" | make BINDIR="$pkgdir/usr/bin" \
GROUP_GID=50 \
LIBDIR="$pkgdir/usr/lib" \
RESOURCEDIR="$pkgdir/usr/lib/X11/app-defaults" \
SCOREDIR="$pkgdir/usr/lib/xbl" \
MANPATH="$pkgdir/usr/share/man" install
}
# vim:set ts=2 sw=2 ft=sh et:
|