wok view xorg-libICE/receipt @ rev 13746
Up: urxvt (9.16)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Mon Dec 31 13:28:06 2012 +0300 (2012-12-31) |
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 }