wok-current annotate xorg-xcursorgen/receipt @ rev 25641
Up gnutls 3.8.3 (CVE-2024-0553, CVE-2024-0567)
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Jan 16 22:11:37 2024 +0000 (11 months ago) |
parents | c9419274b61b |
children | 5926178cd6fa |
rev | line source |
---|---|
pankso@262 | 1 # SliTaz package receipt. |
pankso@262 | 2 |
pankso@262 | 3 PACKAGE="xorg-xcursorgen" |
Hans-G?nter@22252 | 4 VERSION="1.0.7" |
pankso@262 | 5 CATEGORY="x-window" |
pankso@262 | 6 SHORT_DESC="X cursor generator." |
pankso@262 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
Hans-G?nter@22252 | 9 WEB_SITE="https://www.x.org/wiki/" |
Hans-G?nter@22252 | 10 |
pankso@262 | 11 SOURCE="xcursorgen" |
gokhlayeh@6993 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@262 | 13 WGET_URL="$XORG_MIRROR/app/$TARBALL" |
Hans-G?nter@22252 | 14 |
Hans-G?nter@22252 | 15 DEPENDS="libpng xorg-libX11 xorg-libXcursor" |
Hans-G?nter@22252 | 16 BUILD_DEPENDS="libpng-dev xorg-libX11-dev xorg-libXcursor-dev" |
Hans-G?nter@22252 | 17 |
pankso@16081 | 18 HOST_ARCH="i486 arm" |
pankso@262 | 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@262 | 26 # Rules to configure and make the package. |
pankso@262 | 27 compile_rules() |
pankso@262 | 28 { |
Hans-G?nter@22252 | 29 ./configure \ |
Hans-G?nter@22252 | 30 --prefix=/usr \ |
Hans-G?nter@22252 | 31 --mandir=/usr/share/man \ |
pascal@2416 | 32 $CONFIGURE_ARGS && |
pascal@2416 | 33 make && |
pascal@15579 | 34 make DESTDIR=$DESTDIR install |
pankso@262 | 35 } |
pankso@262 | 36 |
pankso@262 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@262 | 38 genpkg_rules() |
pankso@262 | 39 { |
pankso@262 | 40 mkdir -p $fs/usr |
Hans-G?nter@22252 | 41 cp -a $install/usr/bin $fs/usr |
pankso@262 | 42 } |