wok-next view libpthread-stubs/receipt @ rev 19583
Up: cookutils, tazpkg, aufs, kmod, lguest, linux, linux64.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Jan 02 07:42:47 2017 +0200 (2017-01-02) |
parents | 9921bd529520 |
children | c4e53a39395a |
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"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make && make -j 1 install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 }