mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
1,008 B
Bash
26 lines
1,008 B
Bash
# $Id: PKGBUILD 1980 2009-09-06 22:16:50Z shusmann $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
|
|
pkgname=subtitleeditor
|
|
pkgver=0.33.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=('gtk2' 'gtkmm' 'libglademm' 'libxml++' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'enchant')
|
|
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')
|
|
source=(http://download.gna.org/$pkgname/0.33/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('ee46518737f41dcb87c74c11398459c1')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|