diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gmerlin |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gmerlin')
-rw-r--r-- | community/gmerlin/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/gmerlin/PKGBUILD b/community/gmerlin/PKGBUILD new file mode 100644 index 000000000..097526889 --- /dev/null +++ b/community/gmerlin/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 43364 2011-03-25 11:11:43Z mherych $ +# Maintainer: Mateusz Herych <heniekk@gmail.com> + +pkgname=gmerlin +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Multimedia architecture for Linux" +arch=('i686' 'x86_64') +url="http://openmovieeditor.sourceforge.net/HomePage" +license=('GPL') +depends=('gavl' 'libxml2' 'gtk2' 'libxv' 'mesa' 'libvisual' 'libcdio>=0.82' 'musicbrainz' 'mjpegtools') +optdepends=('esound') +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) +options=('!libtool') +md5sums=('60d3c5081c8685ee7bc1afdfac8f6dc6') +build() { + cd $srcdir/$pkgname-$pkgver + rm -rf cpuinfo.sh + ./configure --prefix=/usr \ + --without-doxygen + make || return 1 + make DESTDIR=$pkgdir install + rm -rf $pkgdir/usr/share/info/dir +} |