wok view libpthread-stubs/receipt @ rev 15957

Add: compiz-plugins-extra + compiz-plugins-unsupported
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 19:58:48 2014 +0100 (2014-02-23)
parents 049b98907ea8
children 9921bd529520
line source
1 # SliTaz package receipt.
3 PACKAGE="libpthread-stubs"
4 VERSION="0.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Weak aliases for pthread functions."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://xcb.freedesktop.org"
11 WGET_URL="$WEB_SITE/dist/$TARBALL"
13 DEPENDS="glibc-base"
14 BUILD_DEPENDS="gcc"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS && make && make -j 1 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 $install/usr/lib/*.so* $fs/usr/lib
28 }