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
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/"
16 depends=('sdl' 'sdl_image' 'sdl_mixer')
27 source=(http://rs.tc/br/lib/exe/fetch.php/br-${pkgver}.tar.gz)
29 md5sums=('601ed69c0da0f1cbc3181940ef2eabde')
36 cmake -DCMAKE_INSTALL_PREFIX=/usr ..
43 cd "$srcdir/br-5/build"
44 make DESTDIR="$pkgdir/" install
47 # vim:set ts=2 sw=2 et: