wok-next view pth/receipt @ rev 20464

Combine receipts (final)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 07 19:43:44 2018 +0200 (2018-03-07)
parents bf4a09ef1d2e
children 10df65db91ad
line source
1 # SliTaz package receipt v2.
3 PACKAGE="pth"
4 VERSION="2.0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="C library for multithreading inside server applications"
7 MAINTAINER="fraazz@altern.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.gnu.org/software/pth/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/$TARBALL"
14 SPLIT="pth-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 make -j 1 &&
19 make -j 1 DESTDIR=$DESTDIR install
20 }
22 genpkg_rules() {
23 case $PACKAGE in
24 pth)
25 copy @std
26 DEPENDS="libltdl"
27 ;;
28 *-dev)
29 copy @dev
30 ;;
31 esac
32 }