wok annotate xorg-xf86vidmodeproto/receipt @ rev 25037

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