diff options
Diffstat (limited to 'community/rasqal/APKBUILD')
-rw-r--r-- | community/rasqal/APKBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/community/rasqal/APKBUILD b/community/rasqal/APKBUILD index 3690a408d8..6dbabc6c86 100644 --- a/community/rasqal/APKBUILD +++ b/community/rasqal/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=rasqal pkgver=0.9.33 -pkgrel=0 +pkgrel=1 pkgdesc="RDF query library" url="http://www.librdf.org/" arch="all" @@ -23,11 +23,16 @@ prepare() { *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done + update_config_sub } build() { cd "$_builddir" - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --target=$CTARGET \ + --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ |