summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-12-03 16:35:44 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-12-03 16:35:44 -0300
commit969b3a2ebc82f0e36cfe0ee379ffd5267e698edb (patch)
tree1bc352e728df1ef9e34758350dde3eedcb39f967
parent22344ac073dcbaa7585056d5a15eabdc5df7fae8 (diff)
libquicktime-1.2.4-13.parabola1: fix FS#47235 -> https://bugs.archlinux.org/task/47235
-rw-r--r--libre/libquicktime/PKGBUILD23
1 files changed, 14 insertions, 9 deletions
diff --git a/libre/libquicktime/PKGBUILD b/libre/libquicktime/PKGBUILD
index 9342a22b2..db152d06a 100644
--- a/libre/libquicktime/PKGBUILD
+++ b/libre/libquicktime/PKGBUILD
@@ -1,17 +1,20 @@
-# $Id: PKGBUILD 128871 2015-03-07 21:57:00Z arojas $
+# $Id: PKGBUILD 148114 2015-12-02 17:56:09Z alucryd $
# Maintainer (Arch): Federico Cinelli <cinelli@aur.archlinux.org>
# Maintainer (Arch): Mateusz Herych <heniekk@gmail.com>
# Contributor: Jorge Lopez <jorginho@lavabit.com>
pkgname=libquicktime
pkgver=1.2.4
-pkgrel=12.parabola1
+pkgrel=13.parabola1
pkgdesc="A library for reading and writing quicktime files, without nonfree faac support"
-arch=('i686' 'x86_64' 'mips64el')
+arch=('i686' 'x86_64' 'armv7h')
license=('GPL')
url="http://libquicktime.sourceforge.net/"
-depends=('gtk2' 'ffmpeg' 'libxv' 'libxaw' 'faad2')
-makedepends=('mesa-libgl' 'x264')
+depends=('alsa-lib' 'faad2' 'gtk2' 'lame' 'libjpeg-turbo' 'libxaw'
+ 'libxv' 'schroedinger'
+ 'libavcodec.so' 'libswscale.so' 'libvorbisenc.so' 'libvorbisfile.so'
+ 'libvorbis.so' 'libx264.so')
+makedepends=('mesa-libgl')
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz"
ffmpeg2.0.patch)
sha256sums=('1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368'
@@ -25,16 +28,18 @@ prepare() {
}
build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr \
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
--enable-gpl \
--with-ffmpeg \
--with-x264 \
- --without-doxygen
+ --without-doxygen \
+ --without-faac
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}