wok annotate edid-decode/receipt @ rev 24330

updated atftp and atftpd (0.7.2 -> 0.7.5)
author Hans-G?nter Theisgen
date Thu Jan 27 15:48:06 2022 +0100 (2022-01-27)
parents 5ea0ce1cecc0
children 92ffb94dcac0
rev   line source
pascal@22688 1 # SliTaz package receipt.
pascal@22688 2
pascal@22688 3 PACKAGE="edid-decode"
pascal@22688 4 VERSION="fork-point-4"
pascal@22688 5 CATEGORY="misc"
pascal@22688 6 SHORT_DESC="Decode EDID data in human-readable format"
pascal@22688 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@22688 8 LICENSE="BSD"
pascal@22688 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@22688 10 WEB_SITE="https://github.com/rpavlik/edid-decode"
pascal@22688 11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
pascal@22688 12
pascal@24055 13 current_version()
pascal@24055 14 {
pascal@24299 15 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
pascal@24055 16 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 17 }
pascal@24055 18
pascal@22688 19 # Rules to configure and make the package.
pascal@22688 20 compile_rules()
pascal@22688 21 {
pascal@22688 22 make &&
pascal@22688 23 make DESTDIR=$DESTDIR install
pascal@22688 24 }
pascal@22688 25
pascal@22688 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@22688 27 genpkg_rules()
pascal@22688 28 {
pascal@22688 29 mkdir -p $fs/usr
pascal@22688 30 cp -a $install/usr/bin $fs/usr
pascal@22688 31 }