wok view xorg-libXau/receipt @ rev 22206

updated xorg-libXau and xorg-libXau-dev (1.0.8 -> 1.0.9)
author Hans-G?nter Theisgen
date Mon Nov 11 14:17:33 2019 +0100 (2019-11-11)
parents 814c58f64f83
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXau"
4 VERSION="1.0.9"
5 CATEGORY="x-window"
6 SHORT_DESC="X authorization file management libary."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="libXau"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 DEPENDS="glibc-base"
16 BUILD_DEPENDS="xorg-xproto"
18 HOST_ARCH="i486 arm"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 --disable-static \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share/licenses
36 mkdir -p $fs/usr/lib
38 install -m644 -oroot -groot $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 }