wok view xorg-libXdmcp/receipt @ rev 14614

Up: php to 5.4.13.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jun 01 06:40:14 2013 +0000 (2013-06-01)
parents aee0ab9b9f75
children 5ddb4d29b420
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXdmcp"
4 VERSION="1.1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="X Display Manager Control Protocol 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="glibc-base"
14 BUILD_DEPENDS="xorg-xproto"
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 \
32 $fs/usr/share/licenses \
33 $fs/usr/lib
34 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }