wok annotate xorg-xf86-input-elographics/receipt @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (2022-05-16)
parents d232150a1d6a
children
rev   line source
pankso@3080 1 # SliTaz package receipt.
pankso@3080 2
pankso@3080 3 PACKAGE="xorg-xf86-input-elographics"
Hans-G?nter@22260 4 VERSION="1.4.2"
pankso@3080 5 CATEGORY="x-window"
pankso@3080 6 SHORT_DESC="Xorg elographics driver."
pankso@3080 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
Hans-G?nter@22260 9 WEB_SITE="https://www.x.org/wiki/"
Hans-G?nter@22260 10
pankso@3080 11 SOURCE="xf86-input-elographics"
gokhlayeh@6993 12 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@3080 13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pankso@3080 14
pascal@15162 15 DEPENDS="xorg-server"
pascal@15162 16 BUILD_DEPENDS="xorg-server-dev"
pascal@15162 17
pascal@24072 18 current_version()
pascal@24072 19 {
pascal@24072 20 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
pascal@24072 21 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
pascal@24072 22 }
pascal@24072 23
pankso@3080 24 # Rules to configure and make the package.
pankso@3080 25 compile_rules()
pankso@3080 26 {
Hans-G?nter@22260 27 ./configure \
Hans-G?nter@22260 28 --prefix=/usr \
Hans-G?nter@22260 29 --sysconfdir=/etc \
Hans-G?nter@22260 30 --mandir=/usr/share/man \
Hans-G?nter@22260 31 --localstatedir=/var \
Hans-G?nter@22260 32 --with-xorg-module-dir=/usr/lib/X11/modules \
Hans-G?nter@22260 33 $CONFIGURE_ARGS &&
Hans-G?nter@22260 34 make &&
Hans-G?nter@22260 35 make DESTDIR=$DESTDIR install
pankso@3080 36 }
pankso@3080 37
pankso@3080 38 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3080 39 genpkg_rules()
pankso@3080 40 {
pankso@3080 41 mkdir -p $fs/usr/lib/X11/modules/input/
Hans-G?nter@22260 42
Hans-G?nter@22260 43 cp -a $install/usr/lib/X11/modules/input/*.so \
Hans-G?nter@22260 44 $fs/usr/lib/X11/modules/input/
pankso@3080 45 }