wok annotate xorg-makedepend/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
parents 814c58f64f83
children 5d79829fa876
rev   line source
gokhlayeh@8080 1 # SliTaz package receipt.
gokhlayeh@8080 2
gokhlayeh@8080 3 PACKAGE="xorg-makedepend"
Hans-G?nter@22238 4 VERSION="1.0.6"
al@14604 5 CATEGORY="development"
Hans-G?nter@22238 6 SHORT_DESC="Create dependencies in makefiles."
gokhlayeh@8080 7 MAINTAINER="gokhlayeh@slitaz.org"
al@14604 8 LICENSE="other"
Hans-G?nter@22238 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22238 10
slaxemulator@14639 11 SOURCE="makedepend"
slaxemulator@14639 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
al@14604 13 WGET_URL="$XORG_MIRROR/util/$TARBALL"
al@14604 14
al@14604 15 DEPENDS="glibc-base xorg-xproto"
gokhlayeh@8080 16 BUILD_DEPENDS="xorg-xproto"
gokhlayeh@8080 17
gokhlayeh@8080 18 # Rules to configure and make the package.
gokhlayeh@8080 19 compile_rules()
gokhlayeh@8080 20 {
Hans-G?nter@22238 21 ./configure \
Hans-G?nter@22238 22 --sysconfdir=/etc \
Hans-G?nter@22238 23 --localstatedir=/var \
al@14604 24 $CONFIGURE_ARGS &&
al@14604 25 make &&
al@14604 26 make install
gokhlayeh@8080 27 }
gokhlayeh@8080 28
gokhlayeh@8080 29 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@8080 30 genpkg_rules()
gokhlayeh@8080 31 {
al@14604 32 mkdir -p $fs/usr/share/licenses
al@14604 33
Hans-G?nter@22238 34 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
Hans-G?nter@22238 35 cp -a $install/usr/bin $fs/usr
gokhlayeh@8080 36 }