wok view pth/receipt @ rev 16895

qt4-phonon: del bdep
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon Jul 14 15:10:46 2014 +0300 (2014-07-14)
parents b7319995b37e
children 17091bc7c301
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/pth/"
11 WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/$TARBALL"
13 DEPENDS="libltdl"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make -j 1 &&
21 make -j 1 DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }