wok annotate xorg-renderproto/receipt @ rev 24799
updated libical and libical-dev (3.0.8 -> 3.0.14)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 21 17:34:22 2022 +0100 (2022-03-21) |
parents | 814c58f64f83 |
children |
rev | line source |
---|---|
pankso@20 | 1 # SliTaz package receipt. |
pankso@20 | 2 |
pankso@20 | 3 PACKAGE="xorg-renderproto" |
gokhlayeh@6993 | 4 VERSION="0.11.1" |
pankso@211 | 5 CATEGORY="development" |
al@14604 | 6 SHORT_DESC="Render extension headers" |
pankso@20 | 7 MAINTAINER="pankso@slitaz.org" |
al@14604 | 8 LICENSE="other" |
pascal@20423 | 9 WEB_SITE="https://www.x.org/" |
slaxemulator@14639 | 10 SOURCE="renderproto" |
slaxemulator@14639 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
al@14604 | 12 WGET_URL="$XORG_MIRROR/proto/$TARBALL" |
pankso@15983 | 13 HOST_ARCH="i486 arm" |
al@14604 | 14 |
pascal@15598 | 15 DEPENDS="xorg-xproto pkg-config" |
gokhlayeh@6993 | 16 BUILD_DEPENDS="xorg-util-macros" |
pankso@20 | 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@20 | 24 # Rules to configure and make the package. |
pankso@20 | 25 compile_rules() |
pankso@20 | 26 { |
al@14604 | 27 ./configure \ |
al@14604 | 28 --sysconfdir=/etc \ |
al@14604 | 29 --localstatedir=/var \ |
al@14604 | 30 $CONFIGURE_ARGS && |
al@14604 | 31 make && |
al@14604 | 32 make install |
pankso@20 | 33 } |
pankso@20 | 34 |
pankso@20 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@20 | 36 genpkg_rules() |
pankso@20 | 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 |
al@14604 | 41 cp -a $install/* $fs |
al@14604 | 42 rm -rf $fs/usr/share/doc |
pankso@20 | 43 } |