mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
934 B
Bash
26 lines
934 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Daenyth
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Vrob (Markus Heuser) mheuser@mi.fu-berlin.de
|
|
|
|
pkgname=ogmrip
|
|
pkgver=0.12.3
|
|
pkgrel=2
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Libraries and GTK2 interface for DVD ripping using mencoder"
|
|
url="http://ogmrip.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('libdvdread>=4.1.3' 'mplayer' 'ogmtools' 'vorbis-tools' 'lame' 'intltool'
|
|
'pkgconfig' 'gconf' 'libglade' 'hal' 'mkvtoolnix' 'tesseract'
|
|
'enchant' 'faac' 'libtheora' 'enca' 'libnotify' 'gpac')
|
|
makedepends=('perlxml')
|
|
options=(!libtool)
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('11a52e5d9d7f936ae3a1925b5ab51b72')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/usr/share || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}"/ install
|
|
}
|