wok annotate xorg-evieext/receipt @ rev 25420

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 08 07:39:58 2022 +0000 (22 months ago)
parents 814c58f64f83
children
rev   line source
pankso@87 1 # SliTaz package receipt.
pankso@87 2
pankso@87 3 PACKAGE="xorg-evieext"
pankso@12500 4 VERSION="1.1.1"
pankso@200 5 CATEGORY="development"
al@14604 6 SHORT_DESC="EvIE extension headers"
pankso@87 7 MAINTAINER="pankso@slitaz.org"
al@14604 8 LICENSE="other"
pascal@20423 9 WEB_SITE="https://www.x.org/"
slaxemulator@14639 10 SOURCE="evieext"
slaxemulator@14639 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@87 12 WGET_URL="$XORG_MIRROR/proto/$TARBALL"
pankso@87 13
pascal@15598 14 DEPENDS="xorg-util-macros 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
pankso@87 23 # Rules to configure and make the package.
pankso@87 24 compile_rules()
pankso@87 25 {
pankso@12500 26 ./configure \
pankso@12500 27 --sysconfdir=/etc \
pankso@12500 28 --localstatedir=/var \
pankso@12500 29 $CONFIGURE_ARGS &&
al@14604 30 make &&
al@14604 31 make install
pankso@87 32 }
pankso@87 33
pankso@87 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@87 35 genpkg_rules()
pankso@87 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
pankso@12500 40 cp -a $install/* $fs
pankso@87 41 }