diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-04-25 19:56:01 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2016-04-26 12:38:40 +0200 |
commit | a9c8a3e24895f8904f81c2b3c253a7a1445f755b (patch) | |
tree | 8f9a47e82941ff8c6dd5fcb70077f95d655db1c5 /testing/clisp | |
parent | 099950ec5fa4c58a5b59f36ea75739c550db0944 (diff) | |
download | aports-a9c8a3e24895f8904f81c2b3c253a7a1445f755b.tar.bz2 aports-a9c8a3e24895f8904f81c2b3c253a7a1445f755b.tar.xz |
testing/clisp: follow upstream build instructions more closely
Diffstat (limited to 'testing/clisp')
-rw-r--r-- | testing/clisp/APKBUILD | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/testing/clisp/APKBUILD b/testing/clisp/APKBUILD index 5d303f9b48..af75885d50 100644 --- a/testing/clisp/APKBUILD +++ b/testing/clisp/APKBUILD @@ -26,21 +26,19 @@ build() { cd "$builddir" ulimit -s 16384 - _configure="--prefix=/usr \ + ./configure \ + --prefix=/usr \ --with-ffcall \ --with-dynamic-ffi \ --without-dynamic-modules \ --mandir=/usr/share/man \ - --infodir=/usr/share/info" - ./configure $_configure || return 1 - - cd src - ./makemake $_configure > Makefile + --infodir=/usr/share/info \ + "$builddir" || return 1 make -j1 || return 1 } package() { - cd "$builddir"/src + cd "$builddir" make -j1 DESTDIR="$pkgdir" install || return 1 } |