wok-next annotate libpthread-stubs/receipt @ rev 15501
connman: kill dhcpd before starting
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sun Nov 17 16:55:13 2013 +0100 (2013-11-17) |
parents | 049b98907ea8 |
children | 9921bd529520 |
rev | line source |
---|---|
pascal@2752 | 1 # SliTaz package receipt. |
pascal@2752 | 2 |
pascal@2752 | 3 PACKAGE="libpthread-stubs" |
erjo@14820 | 4 VERSION="0.2" |
pascal@2752 | 5 CATEGORY="x-window" |
pascal@2752 | 6 SHORT_DESC="Weak aliases for pthread functions." |
pascal@2752 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15482 | 8 LICENSE="MIT" |
pascal@2752 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@15482 | 10 WEB_SITE="http://xcb.freedesktop.org" |
pascal@15482 | 11 WGET_URL="$WEB_SITE/dist/$TARBALL" |
pascal@15482 | 12 |
gokhlayeh@8194 | 13 DEPENDS="glibc-base" |
gokhlayeh@8194 | 14 BUILD_DEPENDS="gcc" |
pascal@2752 | 15 |
pascal@2752 | 16 # Rules to configure and make the package. |
pascal@2752 | 17 compile_rules() |
pascal@2752 | 18 { |
pascal@2752 | 19 cd $src |
gokhlayeh@11573 | 20 ./configure $CONFIGURE_ARGS && make && make -j 1 install |
pascal@2752 | 21 } |
pascal@2752 | 22 |
pascal@2752 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2752 | 24 genpkg_rules() |
pascal@2752 | 25 { |
erjo@14820 | 26 mkdir -p $fs/usr/lib |
pascal@15482 | 27 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@2752 | 28 } |
pascal@2752 | 29 |