wok view pth/receipt @ rev 13901

Fix: qutim depends
author Alexander Medvedev <devl547@gmail.com>
date Sat Jan 19 15:49:40 2013 +0000 (2013-01-19)
parents 9cb1952ef61d
children bf4a09ef1d2e
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/pth/"
10 WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/$TARBALL"
12 DEPENDS="libltdl"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make -j 1 &&
20 make -j 1 DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }