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