wok-current view xorg-xrandr/receipt @ rev 24130
Add tnylpo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Oct 18 14:47:15 2021 +0000 (2021-10-18) |
parents | 70ff29686266 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xrandr"
4 VERSION="1.5.1"
5 CATEGORY="x-window"
6 SHORT_DESC="X application to show system resources usage."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="xrandr"
12 TARBALL="$SOURCE-$VERSION.tar.xz"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 DEPENDS="xorg-libXrandr"
16 BUILD_DEPENDS="xorg-libXrandr-dev"
18 HOST_ARCH="i486 arm"
20 current_version()
21 {
22 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
23 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 ./configure $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 }