wok annotate xorg-libXp/receipt @ rev 10382
xorg-libXp: can't cross (use native)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon May 23 17:57:45 2011 +0200 (2011-05-23) |
parents | c514cc4854d8 |
children | 48bd3d8ae881 |
rev | line source |
---|---|
rcx@3505 | 1 # SliTaz package receipt. |
rcx@3505 | 2 |
rcx@3505 | 3 PACKAGE="xorg-libXp" |
rcx@3505 | 4 SOURCE="libXp" |
rcx@3505 | 5 VERSION="1.0.0" |
rcx@3505 | 6 CATEGORY="development" |
rcx@3505 | 7 SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices." |
rcx@3505 | 8 MAINTAINER="rcx@zoominternet.net" |
slaxemulator@8029 | 9 DEPENDS="xorg-libXext" |
slaxemulator@8029 | 10 BUILD_DEPENDS="xorg-libXext-dev xorg-printproto" |
rcx@3505 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
rcx@3505 | 12 WEB_SITE="http://www.x.org/" |
rcx@3505 | 13 # This lib is missing from the current X11R7.4 |
rcx@3505 | 14 #WGET_URL="$XORG_MIRROR/lib/$TARBALL" |
rcx@3505 | 15 WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL" |
pankso@10382 | 16 CROSS="bug: can not run test programm" |
rcx@3505 | 17 |
rcx@3505 | 18 # Rules to configure and make the package. |
rcx@3505 | 19 compile_rules() |
rcx@3505 | 20 { |
rcx@3505 | 21 cd $src |
rcx@3505 | 22 ./configure \ |
pankso@10382 | 23 --build=$HOST_SYSTEM \ |
pankso@10382 | 24 --host=$HOST_SYSTEM && |
pankso@10382 | 25 make && make install |
rcx@3505 | 26 } |
rcx@3505 | 27 |
rcx@3505 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3505 | 29 genpkg_rules() |
rcx@3505 | 30 { |
rcx@3505 | 31 mkdir -p $fs/usr/lib |
rcx@3505 | 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
rcx@3505 | 33 } |
rcx@3505 | 34 |