wok annotate xorg-xf86rushproto/receipt @ rev 24072

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 07 17:56:16 2021 +0000 (2021-07-07)
parents 814c58f64f83
children
rev   line source
al@14604 1 # SliTaz package receipt.
al@14604 2
al@14604 3 PACKAGE="xorg-xf86rushproto"
al@14604 4 VERSION="1.1.2"
al@14604 5 CATEGORY="development"
al@14604 6 SHORT_DESC="XF86Rush extension headers"
al@14604 7 MAINTAINER="pankso@slitaz.org"
al@14604 8 LICENSE="other"
pascal@20423 9 WEB_SITE="https://www.x.org/"
slaxemulator@14639 10 SOURCE="xf86rushproto"
slaxemulator@14639 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
al@14604 12 WGET_URL="$XORG_MIRROR/proto/$TARBALL"
al@14604 13
pascal@15598 14 DEPENDS="xorg-videoproto pkg-config"
al@14604 15 BUILD_DEPENDS="xorg-util-macros"
al@14604 16
pascal@24072 17 current_version()
pascal@24072 18 {
pascal@24072 19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
pascal@24072 20 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
pascal@24072 21 }
pascal@24072 22
al@14604 23 # Rules to configure and make the package.
al@14604 24 compile_rules()
al@14604 25 {
al@14604 26 ./configure \
al@14604 27 --sysconfdir=/etc \
al@14604 28 --localstatedir=/var \
al@14604 29 $CONFIGURE_ARGS &&
al@14604 30 make &&
al@14604 31 make install
al@14604 32 }
al@14604 33
al@14604 34 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14604 35 genpkg_rules()
al@14604 36 {
al@14604 37 mkdir -p $fs/usr/share/licenses
al@14604 38 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
al@14604 39
al@14604 40 cp -a $install/* $fs
al@14604 41 }