updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / bricks-engine / PKGBUILD
blob4e774aad915a7689c2269766bfbf3dfefd5d0d23
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: demonicmaniac@gmx.net
7 pkgname=bricks-engine
8 pkgver=5.3
9 pkgrel=1
10 epoch=
11 arch=('i686' 'x86_64')
12 pkgdesc="The Brick Engine is a fast, powerful, cross-platform, TOTALLY FREE 2D game engine."
13 url="http://rs.tc/br/"
14 license=('GPL')
15 groups=()
16 depends=('sdl' 'sdl_image' 'sdl_mixer')
17 makedepends=()
18 checkdepends=()
19 optdepends=('libgl')
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 changelog=
27 source=(http://rs.tc/br/lib/exe/fetch.php/br-${pkgver}.tar.gz)
28 noextract=()
29 md5sums=('601ed69c0da0f1cbc3181940ef2eabde')
32 build() {
33   cd "$srcdir/br-5"
34   mkdir build
35   cd build
36   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
37   ccmake ..
38   make 
42 package() {
43   cd "$srcdir/br-5/build"
44   make DESTDIR="$pkgdir/" install
47 # vim:set ts=2 sw=2 et: