wok view smbbox/receipt @ rev 24988

Fix perl-gd & tcptrack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 12 11:01:25 2022 +0000 (23 months ago)
parents 934055de50e2
children
line source
1 # SliTaz package receipt
3 PACKAGE="smbbox"
4 VERSION="0.99"
5 CATEGORY="network"
6 SHORT_DESC="Tiny gui for mount/unmount SMB Share."
7 MAINTAINER="shann@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="smbbox"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://smbbox.free.fr/"
12 WGET_URL="http://smbbox.free.fr/src/$TARBALL"
14 DEPENDS="smbclient cifs-utils"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/Stable/!d;s|.*Stable ||;s|<.*||;q'
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/$PACKAGE/smbbox $fs/usr/bin
28 cp -a $src/$PACKAGE/smbbox-notify $fs/usr/bin
29 chown -R root.root $fs
30 }