# Maintainer: carstene1ns - http://git.io/ctPKG # Contributor: Gadget3000 # Contributor: Giovanni Scafora pkgname=openbor-svn pkgver=3.0.r4077 pkgrel=1 pkgdesc="An open source fighting video game and moddable game engine (aka Beats of Rage)" arch=('i686' 'x86_64') url="http://www.chronocrash.com" license=('BSD') depends=('bash' 'sdl_gfx' 'libvorbis' 'libpng') makedepends=('subversion' 'yasm' 'imagemagick' 'glu') optdepends=('libgl: OpenGL video mode') install=openbor.install source=(openbor::'svn+http://svn.code.sf.net/p/openbor/engine/engine' 'openbor.desktop' 'openbor.sh') sha256sums=('SKIP' '92c2c8fa5727ddf76421bdb54589d898679b12f4201931f2861b7fa1b613097b' 'fc584ea761ba1307e4568c2ffb78731b848d27ed231bdc2149ece96304a55d81') pkgver() { cd openbor # get version from build script local _major=$(grep ^VERSION_MAJOR= version.sh | sed 's/VERSION_MAJOR=//') local _minor=$(grep ^VERSION_MINOR= version.sh | sed 's/VERSION_MINOR=//') local _rev="$(svnversion)" printf "%s.%s.r%s" "$_major" "$_minor" "${_rev//[[:alpha:]]}" } prepare() { cd openbor # work around broken build system sed 's|$(LNXDEV)/$(PREFIX)||g;s|$(SDKPATH)|/usr|' -i Makefile # disable abort on error sed 's/-Werror//' -i Makefile # disable RPATH sed 's/-Wl,-rpath,$(LIBRARIES)//' -i Makefile # fix a locale warning sed 's|en_US.UTF-8|C|g' -i version.sh # convert icon convert -resize 48x48 resources/OpenBOR_Icon_128x128.png ../openbor.png } build() { cd openbor # work around broken build system ./version.sh if [ "$CARCH" = "x86_64" ]; then make BUILD_LINUX=1 TARGET_ARCH=amd64 else make BUILD_LINUX=1 fi } package() { cd openbor # launcher + binary install -Dm755 ../openbor.sh "$pkgdir"/usr/bin/openbor install -Dm755 OpenBOR "$pkgdir"/usr/bin/OpenBOR.real # doc install -Dm644 README "$pkgdir"/usr/share/doc/$pkgname/README # .desktop entry install -Dm644 ../openbor.desktop "$pkgdir"/usr/share/applications/openbor.desktop install -Dm644 ../openbor.png "$pkgdir"/usr/share/pixmaps/openbor.png # license install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }