diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-05-10 09:47:13 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-05-10 09:47:13 +0000 |
commit | 808de2061d2eed38b20f47cb99b2d37aaecd3832 (patch) | |
tree | 705001e208ec35ae9fe82b1c73cdb08a40657728 /testing/xournal | |
parent | 61bfad23ce279adee958a55fc9de288fa2bf18b8 (diff) | |
download | aports-808de2061d2eed38b20f47cb99b2d37aaecd3832.tar.bz2 aports-808de2061d2eed38b20f47cb99b2d37aaecd3832.tar.xz |
testing/xournal: attempt to fix build on ppc64le
Diffstat (limited to 'testing/xournal')
-rw-r--r-- | testing/xournal/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/testing/xournal/APKBUILD b/testing/xournal/APKBUILD index 7d09437641..d98c89fc46 100644 --- a/testing/xournal/APKBUILD +++ b/testing/xournal/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Ivan Tham <pickfire@riseup.net> pkgname=xournal pkgver=0.4.8 -pkgrel=0 +pkgrel=1 pkgdesc="Notetaking, sketching, keeping a journal using a stylus" url="http://xournal.sourceforge.net/" arch="all !aarch64" @@ -14,7 +14,11 @@ builddir="$srcdir/"$pkgname-$pkgver build() { cd "$builddir" - ./configure --prefix=/usr + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --target=$CTARGET \ + --prefix=/usr make } |