wok view xorg-libXpm/receipt @ rev 14640

Xorg. xorg-libXt: add glib-dev as bdeps; xorg-libXpm: reformat, move binaries to xorg-libXpm-util new package; xorg-libXaw: up 1.0.11.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 02 16:41:49 2013 +0000 (2013-06-02)
parents fd19f13ad61d
children b55f4ee81f38
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXpm"
4 VERSION="3.5.10"
5 CATEGORY="x-window"
6 SHORT_DESC="X Pixmap 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="xorg-libX11"
14 BUILD_DEPENDS="xorg-libXt-dev xorg-libXext-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 }