wok-6.x annotate xorg-xwininfo/receipt @ rev 24633
updated gtick again (0.5.4 -> 0.5.5)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 08 16:29:56 2022 +0100 (2022-03-08) |
parents | f84769d48248 |
children |
rev | line source |
---|---|
jozee@3025 | 1 # SliTaz package receipt. |
jozee@3025 | 2 |
jozee@3025 | 3 PACKAGE="xorg-xwininfo" |
Hans-G?nter@22302 | 4 VERSION="1.1.5" |
jozee@3025 | 5 CATEGORY="x-window" |
Hans-G?nter@22302 | 6 TAGS="util xorg windows" |
Hans-G?nter@22302 | 7 SHORT_DESC="Window information utility to query x-server." |
jozee@3025 | 8 MAINTAINER="jozee@slitaz.org" |
pascal@15579 | 9 LICENSE="MIT" |
Hans-G?nter@22302 | 10 WEB_SITE="https://www.x.org/wiki/" |
Hans-G?nter@22302 | 11 |
jozee@3025 | 12 SOURCE="xwininfo" |
jozee@3025 | 13 TARBALL="$SOURCE-$VERSION.tar.bz2" |
Hans-G?nter@22302 | 14 WGET_URL="$XORG_MIRROR/app/$TARBALL" |
jozee@3025 | 15 |
pascal@15579 | 16 DEPENDS="xorg-libX11" |
pascal@15579 | 17 BUILD_DEPENDS="xorg-libX11-dev" |
pascal@15579 | 18 |
Hans-G?nter@22302 | 19 HOST_ARCH="i486 arm" |
Hans-G?nter@22302 | 20 |
pascal@24072 | 21 current_version() |
pascal@24072 | 22 { |
pascal@24072 | 23 wget -O - $(dirname $WGET_URL) 2>/dev/null | \ |
pascal@24072 | 24 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q |
pascal@24072 | 25 } |
pascal@24072 | 26 |
jozee@3025 | 27 # Rules to configure and make the package.ls sr |
jozee@3025 | 28 compile_rules() |
jozee@3025 | 29 { |
Hans-G?nter@22302 | 30 ./configure \ |
jozee@3025 | 31 $CONFIGURE_ARGS && |
Hans-G?nter@22302 | 32 make && |
Hans-G?nter@22302 | 33 make install |
jozee@3025 | 34 } |
jozee@3025 | 35 |
jozee@3025 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@3025 | 37 genpkg_rules() |
jozee@3025 | 38 { |
jozee@3025 | 39 mkdir -p $fs/usr |
Hans-G?nter@22302 | 40 cp -a $install/usr/bin $fs/usr |
jozee@3025 | 41 } |