diff options
Diffstat (limited to 'community/subtitleeditor/PKGBUILD')
-rw-r--r-- | community/subtitleeditor/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/subtitleeditor/PKGBUILD b/community/subtitleeditor/PKGBUILD new file mode 100644 index 000000000..bfee4dd9a --- /dev/null +++ b/community/subtitleeditor/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 38397 2011-01-26 20:18:42Z jelle $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + +pkgname=subtitleeditor +pkgver=0.38.0 +pkgrel=1 +pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD" +arch=('i686' 'x86_64') +url="http://home.gna.org/subtitleeditor/" +license=('GPL3') +depends=('enchant' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamermm' 'gtk2' 'gtkmm' 'hicolor-icon-theme' 'libsigc++' 'libxml++' 'xdg-utils') +makedepends=('intltool') +optdepends=('gstreamer0.10-ffmpeg: to be able to view movies inside the subtitleeditor' + 'gstreamer0.10-ugly-plugins: to be able to view movies inside the subtitleeditor' + 'gstreamer0.10-fluendo: to be able to view movies inside the subtitleeditor') +options=('!libtool') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://download.gna.org/$pkgname/0.38/$pkgname-$pkgver.tar.gz) +md5sums=('2c4d7d4bd79f45effcea279a2e06ca66') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make + make DESTDIR=${pkgdir} install +} |