diff options
Diffstat (limited to 'testing/gforth')
-rw-r--r-- | testing/gforth/APKBUILD | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/testing/gforth/APKBUILD b/testing/gforth/APKBUILD index e7a3248351..4854545db7 100644 --- a/testing/gforth/APKBUILD +++ b/testing/gforth/APKBUILD @@ -2,23 +2,22 @@ # Maintainer: Milan P. Stanić <mps@arvanta.net> pkgname=gforth pkgver=0.7.3 -pkgrel=0 +pkgrel=1 pkgdesc="Fast and portable implementation of the ANS Forth language" url="http://www.gnu.org/software/gforth/" arch="all !x86" # build fail on x86 -license="GPL-3" -options="!check" +license="GPL-3.0-or-later" +options="!check" # Hangs makedepends="libffi-dev libtool m4" subpackages="$pkgname-doc" source="http://ftp.gnu.org/gnu/gforth/$pkgname-$pkgver.tar.gz" prepare() { - default_prepare - update_config_sub + default_prepare + update_config_sub } build() { - cd "$builddir" CFLAGS='-std=gnu99' ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -31,11 +30,10 @@ build() { } check() { - cd "$builddir" + make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |