wok-next view clisp/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents d6378d455338
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="clisp"
4 VERSION="2.50"
5 CATEGORY="development"
6 SHORT_DESC="GNU ANSI Common Lisp implementation"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://clisp.sourceforge.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://gitlab.com/gnu-clisp/clisp/-/archive/clisp-$VERSION/clisp-clisp-$VERSION.tar.bz2"
14 BUILD_DEPENDS="libunistring-dev gettext libffcall readline-dev libsigsegv-dev"
16 compile_rules() {
17 FORCE_UNSAFE_CONFIGURE=1 \
18 ./configure \
19 --with-ffcall \
20 --with-readline \
21 build &&
22 cd build &&
23 ./makemake \
24 --with-ffcall \
25 --with-readline \
26 --with-dynamic-ffi \
27 > Makefile &&
28 make &&
29 make DESTDIR=$install install
30 }
32 genpkg_rules() {
33 copy @std @dev
34 DEPENDS="libsigsegv libunistring ncurses readline"
35 }