added bento4

This commit is contained in:
Martchus 2015-11-28 01:09:28 +01:00
parent ed712ba4f7
commit 56e9271cd9
2 changed files with 34 additions and 1 deletions

32
bento4/default/PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# Maintainer: Martchus <youremail@domain.com>
pkgname=bento4
_pkgverstr=1-4-2-585
pkgver=1.4.2.585
pkgrel=1
pkgdesc="Bento4 is a C++ class library and tools designed to read and write ISO-MP4 files."
arch=('i686' 'x86_64')
url="http://www.bento4.com/"
license=('GPL')
optdepends=('python')
source=("http://zebulon.bok.net/Bento4/source/Bento4-SRC-$_pkgverstr.zip")
md5sums=('570ed02a95db075d76c014a73f4cd47d')
_config="Release"
if [ $CARCH == "i686" ]; then
_arch="x86"
else
_arch=$CARCH
fi
build() {
cd "Build/Targets/$_arch-unknown-linux/"
sed -i "6s/.*/AP4_BUILD_CONFIG = $_config/" ../../Makefiles/Bootstrap.mak
make sdk
}
package() {
cd "Build/Targets/$_arch-unknown-linux/$_config/SDK"
mkdir -p $pkgdir/usr/bin/
install -m755 -D ./bin/* $pkgdir/usr/bin/
mkdir -p $pkgdir/usr/include/$pkgname/
install -m644 -D ./include/*.h $pkgdir/usr/include/$pkgname/
}

View File

@ -58,4 +58,5 @@ OTHER_FILES += \
brother-mfc-j4410dw/default/cupswrapper-license.txt \
brother-mfc-j4410dw/default/lpr-license.txt \
python-pyusb/default/PKGBUILD \
ffmpeg-libfdk_aac-git/git/PKGBUILD
ffmpeg-libfdk_aac-git/git/PKGBUILD \
bento4/default/PKGBUILD