diff options
author | Nicolás Reynolds <fauno@parabola.nu> | 2013-03-15 11:02:35 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@parabola.nu> | 2013-03-15 11:02:35 -0300 |
commit | 7ffee940f2966ee3f7d8511fd22bb76b77f23ae4 (patch) | |
tree | 2d8ff640511b9e52e5b3773ee947710948c6f76e /libre/ogmrip-libre/PKGBUILD | |
parent | e1a9a599638f8e61a3dcdbed92f9ee25ce4d0394 (diff) | |
parent | 171bf3bdded6c553ed0acd817ff85e84e309e24b (diff) | |
download | abslibre-7ffee940f2966ee3f7d8511fd22bb76b77f23ae4.tar.gz abslibre-7ffee940f2966ee3f7d8511fd22bb76b77f23ae4.tar.bz2 abslibre-7ffee940f2966ee3f7d8511fd22bb76b77f23ae4.zip |
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'libre/ogmrip-libre/PKGBUILD')
-rw-r--r-- | libre/ogmrip-libre/PKGBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libre/ogmrip-libre/PKGBUILD b/libre/ogmrip-libre/PKGBUILD new file mode 100644 index 000000000..cd2e48f2b --- /dev/null +++ b/libre/ogmrip-libre/PKGBUILD @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Daenyth +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: Vrob (Markus Heuser) mheuser@mi.fu-berlin.de +# Maintainer (Parabola): André Silva <emulatorman@lavabit.com> + +_pkgname=ogmrip +pkgname=ogmrip-libre +pkgver=0.13.8 +pkgrel=1 +pkgdesc="Libraries and GTK2 interface for DVD ripping using mencoder (without nonfree faac support)" +arch=('i686' 'x86_64') +url="http://ogmrip.sourceforge.net/" +license=('GPL') +depends=('libdvdread>=4.1.3' 'mplayer' 'mencoder' 'enca' 'pkg-config' 'gconf' 'libglade' 'libnotify' 'enchant') +makedepends=('patch' 'intltool' 'perl-xml-parser' 'lame' 'mkvtoolnix' 'libtheora' 'ogmtools' 'gpac' 'vorbis-tools' 'tesseract') +optdepends=('lame: support for the MP3 audio codec' + 'mkvtoolnix: create, alter, and inspect Matroska files' + 'libtheora: decode and encode Ogg Theora files' + 'ogmtools: support for the Ogg Media container' + 'gpac: support for the MP4 container' + 'vorbis-tools: support for the Ogg Vorbis audio codec' + 'gocr: support for the SRT subtitle format' + 'ocrad: support for the SRT subtitle format' + 'tesseract: support for the SRT subtitle format') +replaces=$_pkgname +conflicts=$_pkgname +provides=$_pkgname=$pkgver +options=('!libtool' '!makeflags') +changelog=$_pkgname.changelog +install=$_pkgname.install +source=(http://downloads.sourceforge.net/sourceforge/${_pkgname}/${_pkgname}-${pkgver}.tar.gz) +sha256sums=('ea6a75e6cc4fe7df1ed65648af208c87748959a6b372847b1005c3b92cc5a423') + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + ./configure --prefix=/usr --sysconfdir=/usr/share + make +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} |