wok view salvador/receipt @ rev 25660

ntfsprogs: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 17 11:09:57 2024 +0000 (3 months ago)
parents 70750875bc0b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="salvador"
4 VERSION="1.4.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="A free, open-source compressor for the ZX0 format."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="zlib/libpng cc"
9 WEB_SITE="https://github.com/emmanuel-marty/salvador"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz"
14 # What is the latest version available today?
15 current_version()
16 {
17 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
18 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
19 }
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 sed -i 's|^CC=.*$|CC=gcc|;s|^CFLAGS=|&-std=gnu99 |' \
25 Makefile
26 make
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 mkdir -p $install/usr/share/doc
35 cp -a $src/salvador $fs/usr/bin
36 cp $src/README* $install/usr/share/doc
37 }