wok-next annotate libpthread-stubs/receipt @ rev 18481
bash: post_install() not [ fails ] when you refuse to make bash default
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Oct 08 04:06:36 2015 +0300 (2015-10-08) |
parents | 9921bd529520 |
children | c4e53a39395a |
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" |
pankso@16342 | 12 HOST_ARCH="i486 arm" |
pascal@15482 | 13 |
pascal@2752 | 14 # Rules to configure and make the package. |
pascal@2752 | 15 compile_rules() |
pascal@2752 | 16 { |
pankso@16347 | 17 ./configure $CONFIGURE_ARGS && |
pankso@16347 | 18 make && make -j 1 install |
pascal@2752 | 19 } |
pascal@2752 | 20 |
pascal@2752 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2752 | 22 genpkg_rules() |
pascal@2752 | 23 { |
erjo@14820 | 24 mkdir -p $fs/usr/lib |
pascal@15482 | 25 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@2752 | 26 } |
pascal@2752 | 27 |