wok annotate libpthread-stubs/receipt @ rev 23373
updated perl-net-dns (0.66 -> 1.23)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 31 13:47:04 2020 +0100 (2020-03-31) |
parents | 284d636c098f |
children | 2a0479881723 |
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@20671 | 10 WEB_SITE="https://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 |