diff options
Diffstat (limited to 'community/aegisub/PKGBUILD')
-rwxr-xr-x | community/aegisub/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/community/aegisub/PKGBUILD b/community/aegisub/PKGBUILD index f746c889b..237108955 100755 --- a/community/aegisub/PKGBUILD +++ b/community/aegisub/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 109779 2014-04-18 17:31:23Z andyrtr $ +# $Id: PKGBUILD 116486 2014-07-28 16:44:53Z alucryd $ # Maintainer: Maxime Gauduin <alucryd@gmail.com> # Contributor: kozec <kozec@kozec.com> # Contributor: Limao Luo <luolimao+AUR@gmail.com> pkgname=aegisub -pkgver=3.1.3 -pkgrel=2 +pkgver=3.2.0 +pkgrel=1 pkgdesc='A general-purpose subtitle editor with ASS/SSA support' arch=('i686' 'x86_64') url='http://www.aegisub.org' @@ -14,12 +14,13 @@ depends=('boost-libs' 'desktop-file-utils' 'ffms2' 'fftw' 'hunspell' 'wxgtk') makedepends=('boost' 'intltool' 'mesa') install="${pkgname}.install" source=("http://ftp.aegisub.org/pub/archives/releases/source/${pkgname}-${pkgver}.tar.xz") -sha256sums=('efea5bc2bc5e0651ada4f65cfdd8af1b422a15f87933710d11287bf51e2b5e58') +sha256sums=('d9e5fd48b243e29832361a13f8be82b271ef0c606b13593ec72461156ee19159') build() { cd ${pkgname}-${pkgver} - ./configure --prefix='/usr' --without-{portaudio,openal,oss} + ./configure --prefix='/usr' --without-{portaudio,openal,oss} \ + --disable-update-checker make } |