diff options
Diffstat (limited to 'community/fmodex/PKGBUILD')
-rw-r--r-- | community/fmodex/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/community/fmodex/PKGBUILD b/community/fmodex/PKGBUILD deleted file mode 100644 index 8bb9b7e2c..000000000 --- a/community/fmodex/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 80347 2012-11-20 11:44:56Z svenstaro $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> - -# Note: This packae is proprietary and distribution is limited. However, we -# have written permission to by the FMOD CEO to distribute this in binary form. -pkgname=fmodex -pkgver=4.44.01 -pkgrel=1 -pkgdesc="An advanced audio engine" -arch=('i686' 'x86_64') -url="http://www.fmod.org/" -license=('custom') -source=("http://www.fmod.org/index.php/release/version/fmodapi${pkgver//./}linux.tar.gz") -md5sums=('3f32d8e74ac5cc6e581f7c32c71f4d20') - -build() { - cd fmodapi${pkgver//./}linux - - mkdir -p ${pkgdir}/usr/lib - mkdir -p ${pkgdir}/usr/include/fmodex - - cp -d api/lib/* ${pkgdir}/usr/lib/ - [[ $CARCH == "i686" ]] && rm ${pkgdir}/usr/lib/*64* - - if [[ $CARCH == "x86_64" ]]; then - cd ${pkgdir}/usr/lib - ln -sf libfmodex64-${pkgver}.so libfmodex-${pkgver}.so - ln -sf libfmodexL64-${pkgver}.so libfmodexL-${pkgver}.so - cd ${srcdir}/fmodapi${pkgver//./}linux - fi - - cp api/inc/* ${pkgdir}/usr/include/fmodex/ - - install -Dm644 documentation/LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE - - mkdir -p ${pkgdir}/usr/share/doc/fmodex - cp -r documentation examples ${pkgdir}/usr/share/doc/fmodex -} - -# vim:set ts=2 sw=2 et: |