wok annotate pth/receipt @ rev 10837

Add libmatchbox (Match may be used for kids or small device desktop)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 08 23:20:29 2011 +0200 (2011-06-08)
parents 83809e28255e
children 9cb1952ef61d
rev   line source
fraazz@585 1 # SliTaz package receipt.
fraazz@585 2
fraazz@585 3 PACKAGE="pth"
fraazz@585 4 VERSION="2.0.7"
pankso@588 5 CATEGORY="system-tools"
pankso@588 6 SHORT_DESC="C library for multithreading inside server applications."
fraazz@585 7 MAINTAINER="fraazz@altern.org"
fraazz@585 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
fraazz@585 9 WEB_SITE="http://www.gnu.org/software/pth/"
erjo@9942 10 WGET_URL="ftp://ftp.ossp.org/pkg/lib/pth/$TARBALL"
erjo@9942 11
erjo@9942 12 DEPENDS="libltld"
fraazz@585 13
fraazz@585 14 # Rules to configure and make the package.
fraazz@585 15 compile_rules()
fraazz@585 16 {
fraazz@585 17 cd $src
erjo@9942 18 ./configure --prefix=/usr &&
gokhlayeh@7977 19 make -j 1 &&
erjo@9942 20 make -j 1 DESTDIR=$DESTDIR install
fraazz@585 21 }
fraazz@585 22
fraazz@585 23 # Rules to gen a SliTaz package suitable for Tazpkg.
fraazz@585 24 genpkg_rules()
fraazz@585 25 {
pankso@588 26 mkdir -p $fs/usr/lib
pankso@588 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
fraazz@585 28 }
fraazz@585 29