wok view xorg-libICE/receipt @ rev 12532

Slim: more security when starting Xorg
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 25 11:39:21 2012 +0200 (2012-04-25)
parents e5ae411e1d8c
children 303cc9eb28c5
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libICE"
4 VERSION="1.0.8"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libICE"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 BUILD_DEPENDS="pkg-config xorg-xproto xorg-xtrans"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }