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/thoggen |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/thoggen')
-rw-r--r-- | community/thoggen/ChangeLog | 6 | ||||
-rw-r--r-- | community/thoggen/PKGBUILD | 22 |
2 files changed, 28 insertions, 0 deletions
diff --git a/community/thoggen/ChangeLog b/community/thoggen/ChangeLog new file mode 100644 index 000000000..45138e297 --- /dev/null +++ b/community/thoggen/ChangeLog @@ -0,0 +1,6 @@ +2008-06-19 Mateusz Herych <heniekk@gmail.com> + +* Updated to 0.7.1 + +2007-06-27 tardo <tardo@nagi-fanboi.net> +* built for x86_64 diff --git a/community/thoggen/PKGBUILD b/community/thoggen/PKGBUILD new file mode 100644 index 000000000..35230b4c0 --- /dev/null +++ b/community/thoggen/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 22322 2010-07-20 23:22:32Z mherych $ +# Maintainer: Mateusz Herych <heniekk@gmail.com> +# Maintainer: Robert Emil Berge <filoktetes@linuxophic.org> + +pkgname=thoggen +pkgver=0.7.1 +pkgrel=5 +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 +} + |