summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Gauduin2018-03-16 20:33:07 +0100
committerMaxime Gauduin2018-03-16 20:33:07 +0100
commita44269ca4773824762d7b9a4baa6384605a899f8 (patch)
tree00022bffc9116e4e20a6d70f6c65628bfc961c2b
parent691e116e2b8957513c7534e72fe831e2b7bba72c (diff)
downloadaur-a44269ca4773824762d7b9a4baa6384605a899f8.tar.gz
Fix aegisub-git
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD16
2 files changed, 12 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 171fa4059d30..1a0af97de46d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,14 @@
# Generated by mksrcinfo v8
-# Mon Jun 5 19:30:44 UTC 2017
+# Fri Mar 16 19:33:07 UTC 2018
pkgbase = aegisub-git
pkgdesc = A general-purpose subtitle editor with ASS/SSA support
- pkgver = 3.2.2.r305.8d3ad9ff6
+ pkgver = 3.2.2.r323.f6a2ac08a
pkgrel = 1
url = http://www.aegisub.org
- arch = i686
arch = x86_64
license = GPL
license = BSD
+ makedepends = autoconf-archive
makedepends = boost
makedepends = git
makedepends = intltool
diff --git a/PKGBUILD b/PKGBUILD
index 91e893e81e37..eb15438fb9fb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=aegisub-git
-pkgver=3.2.2.r305.8d3ad9ff6
+pkgver=3.2.2.r323.f6a2ac08a
pkgrel=1
pkgdesc='A general-purpose subtitle editor with ASS/SSA support'
arch=('x86_64')
@@ -10,7 +10,7 @@ license=('GPL' 'BSD')
depends=('alsa-lib' 'boost-libs' 'fftw' 'fontconfig' 'gcc-libs' 'glibc'
'hunspell' 'icu' 'libgl' 'libpulse' 'uchardet' 'wxgtk3' 'zlib'
'libass.so' 'libffms2.so')
-makedepends=('boost' 'git' 'intltool' 'lua' 'mesa')
+makedepends=('autoconf-archive' 'boost' 'git' 'intltool' 'lua' 'mesa')
provides=('aegisub')
conflicts=('aegisub')
source=('aegisub::git+https://github.com/Aegisub/Aegisub.git'
@@ -31,17 +31,19 @@ prepare() {
sed 's/$(LIBS_BOOST) $(LIBS_ICU)/$(LIBS_BOOST) $(LIBS_ICU) -pthread/' -i tools/Makefile
+ cp -f /usr/share/aclocal/ax_boost_{chrono,filesystem,locale,regex,system,thread}.m4 m4macros/
+
./autogen.sh
- ./configure \
- --prefix='/usr' \
- --with-wx-config='/usr/bin/wx-config-gtk3' \
- --without-{portaudio,openal,oss} \
- --disable-update-checker
}
build() {
cd aegisub
+ ./configure \
+ --prefix='/usr' \
+ --with-wx-config='/usr/bin/wx-config-gtk3' \
+ --without-{portaudio,openal,oss} \
+ --disable-update-checker
make
}