wok annotate gsynaptics/receipt @ rev 25028

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 19 17:04:56 2022 +0000 (23 months ago)
parents af8d823a3077
children
rev   line source
al@13696 1 # SliTaz package receipt.
al@13696 2
al@13696 3 PACKAGE="gsynaptics"
al@13696 4 VERSION="0.9.16"
al@13696 5 CATEGORY="utilities"
Hans-G?nter@23222 6 SHORT_DESC="Synaptics TouchPad driver for XOrg/XFree86 (Deprecated)."
al@13696 7 MAINTAINER="al.bobylev@gmail.com"
pascal@15000 8 LICENSE="GPL2"
al@13696 9 WEB_SITE="http://sourceforge.jp/projects/gsynaptics/"
Hans-G?nter@23222 10
al@13696 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@25028 12 WGET_URL="http://mirrors.dotsrc.org/mirrors/exherbo/$TARBALL"
al@13696 13
Hans-G?nter@23222 14 DEPENDS="dbus-glib GConf gtk+ libglade ORBit2"
Hans-G?nter@23222 15 BUILD_DEPENDS="dbus-glib-dev gtk+-dev libglade-dev GConf-dev gnome-doc-utils-dev"
al@13696 16
pascal@24445 17 # What is the latest version available today?
pascal@24445 18 current_version()
pascal@24445 19 {
pascal@24445 20 wget -O - https://osdn.net/projects/gsynaptics/releases/ 2>/dev/null | \
pascal@24445 21 sed '/GSynaptics-[0-9]/!d;s|.*GSynaptics-||;s|. .*||' | sort -Vr | sed q
pascal@24445 22 }
pascal@24445 23
al@13696 24 # Rules to configure and make the package.
al@13696 25 compile_rules()
al@13696 26 {
Hans-G?nter@23222 27 ./configure \
Hans-G?nter@23222 28 --disable-scrollkeeper \
Hans-G?nter@23222 29 $CONFIGURE_ARGS &&
al@13696 30 make &&
al@13696 31 make install
al@13696 32 }
al@13696 33
al@13696 34 # Rules to gen a SliTaz package suitable for Tazpkg.
al@13696 35 genpkg_rules()
al@13696 36 {
Hans-G?nter@23222 37 cp -a $install/* $fs
al@13696 38 }