diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-12 03:39:46 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-12 03:39:46 +0000 |
commit | 61e090957dbc6b062f3a1af7eeb0d58478c6657d (patch) | |
tree | 768f076ead75d57e34580da0d78ff9f5afe170fd /community/aegisub/PKGBUILD | |
parent | b8322aaddc0dc6b249457dd19ab7fb246b92c997 (diff) |
Sun Jan 12 03:35:50 UTC 2014
Diffstat (limited to 'community/aegisub/PKGBUILD')
-rwxr-xr-x | community/aegisub/PKGBUILD | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/community/aegisub/PKGBUILD b/community/aegisub/PKGBUILD index 8bd2d48a8..d052647f7 100755 --- a/community/aegisub/PKGBUILD +++ b/community/aegisub/PKGBUILD @@ -1,42 +1,41 @@ -# $Id: PKGBUILD 99199 2013-10-25 12:58:18Z giovanni $ +# $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.0.4 -pkgrel=5 +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=('desktop-file-utils' 'ffms2' 'fftw' 'hicolor-icon-theme' 'hunspell' 'lua51' 'wxgtk2.9') -makedepends=('mesa') +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" - 'wxgtk2.9.5.patch') -sha256sums=('7d5d8b94da02278b3327f24dd546c0c897c4b369bd2da9e094dc60371422019a' - '8aed8aaf4773e4a315f9336d3ea4af2c46b9e84c4e651c202e0a70a6cd9e499c') + 'aegisub-wx-stl.patch') +sha256sums=('3df061456bbab6bd955d7c5b63336be47392eafa21148ff6ed5727eaa6a29987' + '1306b2caf2e192597a99931b4519023ea63b684f330e0838b1152d52b279f6c1') prepare() { - cd ${pkgname}/${pkgname} + cd ${pkgname}-${pkgver} - patch -Np2 -i ../../wxgtk2.9.5.patch + patch -Np1 -i ../aegisub-wx-stl.patch } build() { - cd ${pkgname}/${pkgname} + cd ${pkgname}-${pkgver}/${pkgname} - ./configure --prefix='/usr' --without-{portaudio,openal,oss} --with-wxdir='/usr/include/wx-2.9' --with-wx-config='/usr/bin/wx-config-2.9' + ./configure --prefix='/usr' --without-{portaudio,openal,oss} make } package() { - cd ${pkgname}/${pkgname} + cd ${pkgname}-${pkgver}/${pkgname} make DESTDIR="${pkgdir}" install -# License install -dm 755 "${pkgdir}"/usr/share/licenses/aegisub install -m 644 LICENCE "${pkgdir}"/usr/share/licenses/aegisub/LICENSE } |