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/subtitleeditor |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/subtitleeditor')
-rw-r--r-- | community/subtitleeditor/PKGBUILD | 28 | ||||
-rw-r--r-- | community/subtitleeditor/subtitleeditor.changelog | 51 | ||||
-rw-r--r-- | community/subtitleeditor/subtitleeditor.install | 11 |
3 files changed, 90 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 +} diff --git a/community/subtitleeditor/subtitleeditor.changelog b/community/subtitleeditor/subtitleeditor.changelog new file mode 100644 index 000000000..d43a5264b --- /dev/null +++ b/community/subtitleeditor/subtitleeditor.changelog @@ -0,0 +1,51 @@ +2010-07-12 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.37.1 + +2010-07-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.37.0 + +2010-04-06 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.36.2 + +2010-03-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.36.1 + +2010-02-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.36.0 + +2009-12-31 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.35.1 + +2009-11-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.34.0 + +2009-06-25 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.33.0 + +2009-06-03 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.32.0 + +2009-04-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.31.0 + +2008-12-25 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.30.0 + +2008-11-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.26.0 + +2008-10-14 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.25.0 + +2008-09-23 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.24.0 + +2008-09-05 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.23.0 + +2008-08-31 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.22.3 + +2008-08-12 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release v0.22.2 + * Release info: http://home.gna.org/subtitleeditor/release-logs/0.22.0/ diff --git a/community/subtitleeditor/subtitleeditor.install b/community/subtitleeditor/subtitleeditor.install new file mode 100644 index 000000000..b711352cb --- /dev/null +++ b/community/subtitleeditor/subtitleeditor.install @@ -0,0 +1,11 @@ +post_install() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |