diff options
author | root <root@rshg047.dnsready.net> | 2011-06-22 23:03:32 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-22 23:03:32 +0000 |
commit | 7347bb994a41d021c83e97b503f577f2399302e7 (patch) | |
tree | fd148755348d31a3f7069526f91796c12ba7a2f5 /libre/libquicktime-libre | |
parent | 17dec629d8a13d1981d734ddc703efb5382ca309 (diff) |
Wed Jun 22 23:03:32 UTC 2011
Diffstat (limited to 'libre/libquicktime-libre')
-rw-r--r-- | libre/libquicktime-libre/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libre/libquicktime-libre/PKGBUILD b/libre/libquicktime-libre/PKGBUILD new file mode 100644 index 000000000..c6e4ab588 --- /dev/null +++ b/libre/libquicktime-libre/PKGBUILD @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Mateusz Herych <heniekk@gmail.com> + +pkgname=libquicktime-libre +_pkgname=libquicktime +pkgver=1.2.2 +pkgrel=3 +pkgdesc="A library for reading and writing quicktime files (no unfree faac support)." +arch=('i686' 'x86_64') +license=('GPL') +url="http://libquicktime.sourceforge.net/" +depends=('gtk2' 'ffmpeg' 'alsa-lib' 'libxv' 'libgl' 'libxaw' 'x264' 'faad2') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/$_pkgname/$_pkgname-$pkgver.tar.gz) +sha256sums=('a83ddaaeaf98231d9f224190dcb8810ebdabd3edb5c8cebe2fb083d25edb7436') +provides=("$_pkgname=$pkgver") +conflicts=($_pkgname) +replaces=($_pkgname) + +build() { + cd "$srcdir/$_pkgname-$pkgver" + ./configure --prefix=/usr \ + --enable-gpl \ + --with-ffmpeg \ + --with-x264 \ + --without-doxygen + make +} + +package() { + cd $srcdir/$_pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + |