# Maintainer: Tércio Martins # Contributor: Hugo Courtial # Contributor: Luca Weiss _openfx_misc_commit=41119a6 _openfx_commit=c70de42 _openfx_supportext_commit=9fa7ca1 pkgname=openfx-misc pkgver=2.3.15_pre4 pkgrel=1 arch=("i686" "pentium4" "x86_64") pkgdesc="Miscellaneous OpenFX plugins" url="https://github.com/NatronGitHub/openfx-misc" license=("GPL") makedepends=("openmp") depends=("libgl") source=("openfx-misc_$_openfx_misc_commit.tar.gz::https://github.com/NatronGitHub/openfx-misc/tarball/$_openfx_misc_commit" "openfx_$_openfx_commit.tar.gz::https://github.com/NatronGitHub/openfx/tarball/$_openfx_commit" "openfx-supportext_$_openfx_supportext_commit.tar.gz::https://github.com/NatronGitHub/openfx-supportext/tarball/$_openfx_supportext_commit") sha512sums=('SKIP' 'SKIP' 'SKIP') _pkgname="NatronGitHub-$pkgname-$_openfx_misc_commit" # Checks whether the environment is 32-bit or 64-bit if [ $CARCH == 'x86_64' ] then _BITS=64 else _BITS=32 fi prepare() { tar -xzf "$srcdir/openfx_$_openfx_commit.tar.gz" --strip 1 \ -C "$srcdir/$_pkgname/openfx/" tar -xzf "$srcdir/openfx-supportext_$_openfx_supportext_commit.tar.gz" --strip 1 \ -C "$srcdir/$_pkgname/SupportExt/" } build() { cd "$srcdir/$_pkgname" make CONFIG=release \ CXXFLAGS_ADD=-fopenmp \ LDFLAGS_ADD=-fopenmp \ BITS=$_BITS } package() { cd "$srcdir/$_pkgname" mkdir -p "$pkgdir/usr/OFX/Plugins" make install PLUGINPATH=$pkgdir/usr/OFX/Plugins \ CONFIG=release \ BITS=$_BITS }