wok annotate xorg-libFS/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 814c58f64f83
children 5d79829fa876
rev   line source
pascal@14627 1 # SliTaz package receipt.
pascal@14627 2
pascal@14627 3 PACKAGE="xorg-libFS"
Hans-G?nter@22195 4 VERSION="1.0.8"
pascal@14627 5 CATEGORY="x-window"
Hans-G?nter@22195 6 SHORT_DESC="Library Interface to the X Font Server."
pascal@14627 7 MAINTAINER="pascal.bellard@slitaz.org"
al@14637 8 LICENSE="other"
Hans-G?nter@22195 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22195 10
slaxemulator@14639 11 SOURCE="libFS"
slaxemulator@14639 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@14627 13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pascal@14627 14
al@14637 15 DEPENDS="glibc-base"
Hans-G?nter@22195 16 BUILD_DEPENDS="xorg-fontsproto xorg-util-macros xorg-xproto xorg-xtrans"
pascal@14627 17
pascal@14627 18 # Rules to configure and make the package.
pascal@14627 19 compile_rules()
pascal@14627 20 {
Hans-G?nter@22195 21 ./configure \
Hans-G?nter@22195 22 --sysconfdir=/etc \
Hans-G?nter@22195 23 --localstatedir=/var \
Hans-G?nter@22195 24 --disable-static \
pascal@14627 25 $CONFIGURE_ARGS &&
al@14637 26 make &&
al@14637 27 make install
pascal@14627 28 }
pascal@14627 29
pascal@14627 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14627 31 genpkg_rules()
pascal@14627 32 {
pascal@14627 33 mkdir -p $fs/usr/lib
pascal@14627 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@14627 35 }