blob: d052647f75b48c44b89c7f4d116fe95a5f4de3e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $Id: PKGBUILD 103788 2014-01-11 20:08:20Z eric $
# Maintainer: Maxime Gauduin <alucryd@gmail.com>
# Contributor: kozec <kozec@kozec.com>
# Contributor: Limao Luo <luolimao+AUR@gmail.com>
pkgname=aegisub
pkgver=3.1.0
pkgrel=2
pkgdesc="A general-purpose subtitle editor with ASS/SSA support"
arch=('i686' 'x86_64')
url="http://www.aegisub.org"
license=('GPL' 'BSD')
depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'lua51' 'wxgtk')
makedepends=('boost' 'intltool' 'mesa')
install="${pkgname}.install"
source=("http://ftp.aegisub.org/pub/releases/${pkgname}-${pkgver}.tar.xz"
'aegisub-wx-stl.patch')
sha256sums=('3df061456bbab6bd955d7c5b63336be47392eafa21148ff6ed5727eaa6a29987'
'1306b2caf2e192597a99931b4519023ea63b684f330e0838b1152d52b279f6c1')
prepare() {
cd ${pkgname}-${pkgver}
patch -Np1 -i ../aegisub-wx-stl.patch
}
build() {
cd ${pkgname}-${pkgver}/${pkgname}
./configure --prefix='/usr' --without-{portaudio,openal,oss}
make
}
package() {
cd ${pkgname}-${pkgver}/${pkgname}
make DESTDIR="${pkgdir}" install
install -dm 755 "${pkgdir}"/usr/share/licenses/aegisub
install -m 644 LICENCE "${pkgdir}"/usr/share/licenses/aegisub/LICENSE
}
# vim: ts=2 sw=2 et:
|