diff options
Diffstat (limited to 'community/xjadeo/PKGBUILD')
-rw-r--r-- | community/xjadeo/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/community/xjadeo/PKGBUILD b/community/xjadeo/PKGBUILD new file mode 100644 index 000000000..65fbd3cfe --- /dev/null +++ b/community/xjadeo/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 93894 2013-07-11 20:56:42Z speps $ +# Maintainer : speps <speps at aur dot archlinux dot org> + +pkgname=xjadeo +pkgver=0.7.4 +pkgrel=1 +pkgdesc="A simple video player that is synchronized to jack transport." +arch=('i686' 'x86_64') +url="http://xjadeo.sourceforge.net" +license=('GPL') +depends=('ffmpeg' 'imlib2' 'jack' 'liblo' 'libxpm' 'libxv' 'portmidi') +makedepends=('qt4') +optdepends=('qt4: for the GUI (qjadeo)') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" + "qjadeo.desktop") +install="$pkgname.install" +md5sums=('6ca2ad15d61d12e2483589f64ace3983' + '315e2ab44ce3edf4068ff6db48942908') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr \ + --enable-qtgui \ + --with-qt4prefix=/usr/lib/qt4 + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install + + # rc file + install -Dm644 doc/xjadeorc "$pkgdir/etc/xjadeorc" + + # desktop file + install -Dm644 ../qjadeo.desktop \ + "$pkgdir/usr/share/applications/qjadeo.desktop" + + # icon + install -Dm644 doc/xjadeo.png \ + "$pkgdir/usr/share/pixmaps/qjadeo.png" +} |