wok view xorg-libXdmcp/receipt @ rev 13147

btanks: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 10 13:28:48 2012 +0200 (2012-07-10)
parents e5ae411e1d8c
children a09e9d64e4c9
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXdmcp"
4 VERSION="1.1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXdmcp"
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"
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 }