diff options
Diffstat (limited to 'community/gmerlin/PKGBUILD')
-rw-r--r-- | community/gmerlin/PKGBUILD | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/community/gmerlin/PKGBUILD b/community/gmerlin/PKGBUILD index 3acbafcfa..adb56b50c 100644 --- a/community/gmerlin/PKGBUILD +++ b/community/gmerlin/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 57805 2011-11-03 09:25:18Z spupykin $ +# $Id: PKGBUILD 58153 2011-11-07 10:55:45Z spupykin $ # Maintainer: Mateusz Herych <heniekk@gmail.com> pkgname=gmerlin pkgver=1.0.0 -pkgrel=3 +pkgrel=4 pkgdesc="Multimedia architecture for Linux" arch=('i686' 'x86_64') url="http://openmovieeditor.sourceforge.net/HomePage" @@ -15,15 +15,18 @@ optdepends=('alsa-lib: for ALSA support' 'libquicktime: for movie encoding' 'pulseaudio: for PulseAudio support' 'v4l-utils: for video conversion') -source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) options=('!libtool') -md5sums=('60d3c5081c8685ee7bc1afdfac8f6dc6') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz + libpng.patch) +md5sums=('60d3c5081c8685ee7bc1afdfac8f6dc6' + 'c262023434246705296d97bc7337a212') build() { cd "$srcdir/$pkgname-$pkgver" rm -rf cpuinfo.sh + patch -p1 <$srcdir/libpng.patch ./configure --prefix=/usr --without-doxygen make } |