wok view wol/receipt @ rev 24990

idesk: imlib2 >= 1.7.5 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 13 20:03:04 2022 +0000 (2022-05-13)
parents 2a21689b0af7
children 78727b04c002
line source
1 # SliTaz package receipt.
3 PACKAGE="wol"
4 VERSION="0.7.1"
5 CATEGORY="network"
6 SHORT_DESC="wol implements Wake On LAN functionality in a small program."
7 MAINTAINER="l.lemarinel@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
10 WGET_URL="$SF_MIRROR/ahh/$TARBALL"
11 WEB_SITE="http://wake-on-lan.sourceforge.net/"
13 BUILD_DEPENDS=""
14 DEPENDS=""
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/wake-on-lan/files/wol/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|' | sort -Vr | sed q | xargs wget -O - 2>/dev/null | \
21 sed '/scope="row/!d;s|.*/wol/||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 cd $src
28 ./configure $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }