wok view xorg-libFS/receipt @ rev 14639

Fixed all xorg receipts to use SOURCE variable again. Please use SOURCE variable Aleksej.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jun 02 09:36:07 2013 +0000 (2013-06-02)
parents 303cc9eb28c5
children 814c58f64f83
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libFS"
4 VERSION="1.0.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Library Interface to the X Font Server"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://www.x.org/"
10 SOURCE="libFS"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="xorg-util-macros xorg-xproto xorg-fontsproto xorg-xtrans"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }