mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
29 lines
939 B
Bash
29 lines
939 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
||
|
# Contributor: Allan McRae <allan@archlinux.org>
|
||
|
# Contributor: FJ <joostef@gmail.com>
|
||
|
# Contributor: Sebastien Piccand <sebcactus gmail com>
|
||
|
|
||
|
pkgname=gaupol
|
||
|
pkgver=0.15
|
||
|
pkgrel=2
|
||
|
pkgdesc="An editor for text-based subtitles"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://home.gna.org/gaupol"
|
||
|
license=('GPL')
|
||
|
depends=('pygtk')
|
||
|
makedepends=('gettext' 'intltool')
|
||
|
optdepends=('python-chardet: character encoding detection'
|
||
|
'pyenchant: spell-checking'
|
||
|
'iso-codes: translate language and country codes for spell-checker'
|
||
|
'mplayer: subtitle preview'
|
||
|
'vlc: subtitle preview')
|
||
|
install=gaupol.install
|
||
|
source=(http://download.gna.org/$pkgname/0.15/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('af9c6d248e5ba8e4c0459243eccea4c3')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
python setup.py install --root=$pkgdir || return 1
|
||
|
}
|