wok-next diff clisp/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line diff
     1.1 --- a/clisp/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/clisp/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="clisp"
     1.7 -VERSION="2.50"
     1.8 +VERSION="2.49"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="GNU ANSI Common Lisp implementation"
    1.11  MAINTAINER="paul@slitaz.org"
    1.12 @@ -9,27 +9,24 @@
    1.13  WEB_SITE="https://clisp.sourceforge.io/"
    1.14  
    1.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WGET_URL="https://gitlab.com/gnu-clisp/clisp/-/archive/clisp-$VERSION/clisp-clisp-$VERSION.tar.bz2"
    1.17 +WGET_URL="https://downloads.sourceforge.net/sourceforge/$PACKAGE/$TARBALL"
    1.18 +TARBALL_SHA1="7e8d585ef8d0d6349ffe581d1ac08681e6e670d4"
    1.19  
    1.20 -BUILD_DEPENDS="libunistring-dev gettext-dev libffcall readline-dev libsigsegv-dev"
    1.21 +BUILD_DEPENDS="gettext-dev libffcall-dev readline-dev libsigsegv-dev"
    1.22 +
    1.23 +COPY="@std @dev"
    1.24 +DEPENDS="libffcall libsigsegv ncurses readline"
    1.25  
    1.26  compile_rules() {
    1.27 -	FORCE_UNSAFE_CONFIGURE=1 \
    1.28 +	ulimit -s 16384
    1.29 +
    1.30  	./configure \
    1.31  		--with-ffcall \
    1.32  		--with-readline \
    1.33 -		build &&
    1.34 -	cd  build &&
    1.35 -	./makemake \
    1.36 -		--with-ffcall \
    1.37 -		--with-readline \
    1.38  		--with-dynamic-ffi \
    1.39 -		> Makefile &&
    1.40 -	make &&
    1.41 -	make DESTDIR=$install install
    1.42 +		--without-dynamic-modules \
    1.43 +		. &&
    1.44 +	fix libtool &&
    1.45 +	make -j1 &&
    1.46 +	make -j1 DESTDIR=$install install
    1.47  }
    1.48 -
    1.49 -genpkg_rules() {
    1.50 -	copy @std @dev
    1.51 -	DEPENDS="libsigsegv libunistring ncurses readline"
    1.52 -}