wok view fatattr/receipt @ rev 25041

Up fatattr (1.0.1), puzzles (20220128)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 27 17:15:46 2022 +0000 (23 months ago)
parents e3079653b462
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fatattr"
4 VERSION="1.0.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Handle fat attributes."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.kernel.org/"
11 WGET_URL="http://deb.debian.org/debian/pool/main/f/fatattr/fatattr_$VERSION.orig.tar.xz"
13 # What is the latest version available today?
14 current_version()
15 {
16 wget -O - https://gitlab.com/Terseus/fatattr/-/commits/master 2>/dev/null | \
17 sed '/commits-row/!d;s|.*day="||;s|".*||;s|-||g;q'
18 }
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure
24 make
25 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin
32 cp $src/fatattr $fs/usr/bin
33 cp $stuff/fatattr.sh $fs/usr/bin
34 }