wok view xorg-printproto/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
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-printproto"
4 VERSION="1.0.5"
5 CATEGORY="development"
6 SHORT_DESC="Print extension headers"
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="other"
9 WEB_SITE="https://www.x.org/"
10 SOURCE="printproto"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/proto/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="xorg-fontsproto xorg-libX11-dev xorg-libXau-dev pkg-config"
16 BUILD_DEPENDS="xorg-util-macros"
18 current_version()
19 {
20 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
21 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure \
28 --sysconfdir=/etc \
29 --localstatedir=/var \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share/licenses
39 cp -a $src/COPYING $fs/usr/share/licenses/$PACKAGE.txt
41 cp -a $install/* $fs
42 rm -rf $fs/usr/share/man
43 }