mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
775 B
Bash
22 lines
775 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
|
# Maintainer: Robert Emil Berge <filoktetes@linuxophic.org>
|
|
|
|
pkgname=thoggen
|
|
pkgver=0.7.1
|
|
pkgrel=4
|
|
pkgdesc="A DVD ripper based on GStreamer and Gtk+."
|
|
arch=('i686' 'x86_64')
|
|
url="http://thoggen.net/"
|
|
license=('GPL')
|
|
depends=('libofa' 'perlxml' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-ugly-plugins' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-ffmpeg' 'libdvdread' 'hal' 'libglade')
|
|
source=(http://downloads.sourceforge.net/sourceforge/thoggen/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('e36c1ceb098f8ed51ca6c0d1e7ae8279')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
|