wok-6.x diff xorg-libXp/receipt @ rev 3505
Add: xorg-libXp and xorg-printproto, Xorg print modules
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Fri Jun 19 12:31:10 2009 +0000 (2009-06-19) |
parents | |
children | cf86af013953 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xorg-libXp/receipt Fri Jun 19 12:31:10 2009 +0000 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="xorg-libXp" 1.7 +SOURCE="libXp" 1.8 +VERSION="1.0.0" 1.9 +CATEGORY="development" 1.10 +SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices." 1.11 +MAINTAINER="rcx@zoominternet.net" 1.12 +DEPENDS="" 1.13 +BUILD_DEPENDS="slitaz-toolchain pkg-config xorg-xproto xorg-kbproto xorg-libXdmcp-dev xorg-libX11-dev xorg-libXau-dev xorg-libXext-dev xorg-xextproto xorg-printproto" 1.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 1.15 +WEB_SITE="http://www.x.org/" 1.16 +# This lib is missing from the current X11R7.4 1.17 +#WGET_URL="$XORG_MIRROR/lib/$TARBALL" 1.18 +WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + cd $src 1.24 + ./configure \ 1.25 + --prefix=/usr \ 1.26 + --infodir=/usr/share/info \ 1.27 + --mandir=/usr/share/man \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && make DESTDIR=$PWD/_pkg install 1.30 +} 1.31 + 1.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.33 +genpkg_rules() 1.34 +{ 1.35 + mkdir -p $fs/usr/lib 1.36 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.37 +} 1.38 +