wok-next view fcgi/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents a3c581bf52b8
children bb57d318dd87
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fcgi"
4 VERSION="2.4.0"
5 CATEGORY="development"
6 SHORT_DESC="Fast CGI binary and library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://fastcgi-archives.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.fastcgi.com/dist/$TARBALL" # FIXME
14 SPLIT="$PACKAGE-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 fix libtool &&
19 make -j1 &&
20 make -j1 DESTDIR=$install install
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 fcgi)
26 copy @std
27 TAGS="CGI"
28 ;;
29 *-dev)
30 copy @dev
31 ;;
32 esac
33 }