wok-current annotate xorg-setxkbmap/receipt @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (2 months ago)
parents 5d79829fa876
children
rev   line source
pascal@1613 1 # SliTaz package receipt.
pascal@1613 2
pascal@1613 3 PACKAGE="xorg-setxkbmap"
Hans-G?nter@22244 4 VERSION="1.3.2"
pascal@1613 5 CATEGORY="x-window"
pascal@1613 6 SHORT_DESC="Set the keyboard using the X Keyboard Extension."
pascal@1613 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="MIT"
Hans-G?nter@22244 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22244 10
pascal@1613 11 SOURCE="setxkbmap"
gokhlayeh@6993 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@1613 13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
pascal@1613 14
pankso@12521 15 DEPENDS="xorg-xkeyboard-config"
shann@25590 16 BUILD_DEPENDS="xorg-libxkbfile-dev"
pankso@12521 17
Hans-G?nter@22244 18 HOST_ARCH="i486 arm"
Hans-G?nter@22244 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
pascal@1613 26 # Rules to configure and make the package.
pascal@1613 27 compile_rules()
pascal@1613 28 {
Hans-G?nter@22244 29 ./configure \
Hans-G?nter@22244 30 --sysconfdir=/etc \
Hans-G?nter@22244 31 --mandir=/usr/share/man \
Hans-G?nter@22244 32 --localstatedir=/var \
pankso@12521 33 $CONFIGURE_ARGS &&
Hans-G?nter@22244 34 make &&
Hans-G?nter@22244 35 make install
pascal@1613 36 }
pascal@1613 37
pascal@1613 38 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1613 39 genpkg_rules()
pascal@1613 40 {
pankso@12521 41 mkdir -p $fs/usr
pankso@12521 42 cp -a $install/usr/bin $fs/usr
pascal@1613 43 }