wok view libpthread-stubs/receipt @ rev 16342

ARM: add libpthread-stubs, libdrm
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 18:33:53 2014 +0200 (2014-04-12)
parents 8d6f480bf664
children 284d636c098f
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 DEPENDS="glibc-base"
15 BUILD_DEPENDS="gcc"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS && make && make -j 1 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }