diff options
Diffstat (limited to 'community/kungfu/PKGBUILD')
-rw-r--r-- | community/kungfu/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/kungfu/PKGBUILD b/community/kungfu/PKGBUILD new file mode 100644 index 000000000..927e73ed7 --- /dev/null +++ b/community/kungfu/PKGBUILD @@ -0,0 +1,27 @@ +# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com> +# Contributor: Björn Martensen <bjoern.martensen@gmail.com> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=kungfu +pkgver=0.3.0 +pkgrel=3 +pkgdesc="A GStreamer based DVD ripper." +arch=('i686' 'x86_64') +url="https://launchpad.net/kungfu/" +license=('GPL') +depends=('pygtk' 'gstreamer0.10-python' 'gstreamer0.10-ffmpeg' 'dbus-python' \ + 'gstreamer0.10-good-plugins' 'gstreamer0.10-base-plugins' 'gstreamer0.10-ugly-plugins') +makedepends=('python2') +source=(http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz) +md5sums=('1a398887784da4e0694afad893ce48b4') + +build() { + /bin/true +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + python2 setup.py install --root=${pkgdir} + chmod 644 ${pkgdir}/usr/share/pixmaps/kungfu.svg + chmod 644 ${pkgdir}/usr/share/applications/kungfu.desktop +} |