wok view xorg-libSM/receipt @ rev 14638

xorg-bigreqsproto: Add SOURCE variable back in.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jun 02 09:02:22 2013 +0000 (2013-06-02)
parents ada4e537ac19
children 5ddb4d29b420
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libSM"
4 VERSION="1.2.1"
5 CATEGORY="x-window"
6 SHORT_DESC="X Session Management Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://www.x.org/"
10 TARBALL="${PACKAGE#xorg-}-$VERSION.tar.bz2"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 DEPENDS="util-linux-uuid xorg-libICE"
14 BUILD_DEPENDS="xorg-libICE-dev xorg-xtrans util-linux-uuid-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 --localstatedir=/var \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }