wok annotate edid-decode/receipt @ rev 24888
grub2: avoid grub-mkimage error: decompressor is too big
author | Hans-G?nter Theisgen |
---|---|
date | Sat Apr 02 17:25:58 2022 +0100 (2022-04-02) |
parents | ac8ca9758df1 |
children |
rev | line source |
---|---|
pascal@22688 | 1 # SliTaz package receipt. |
pascal@22688 | 2 |
pascal@22688 | 3 PACKAGE="edid-decode" |
Hans-G?nter@24509 | 4 VERSION="fork-point-5" |
pascal@22688 | 5 CATEGORY="misc" |
Hans-G?nter@24509 | 6 SHORT_DESC="Decode EDID data in human-readable format." |
pascal@22688 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@22688 | 8 LICENSE="BSD" |
Hans-G?nter@24509 | 9 WEB_SITE="https://github.com/rpavlik/edid-decode" |
Hans-G?nter@24509 | 10 |
pascal@22688 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@22688 | 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" |
pascal@22688 | 13 |
Hans-G?nter@24509 | 14 DEPENDS="gcc83-lib-base" |
Hans-G?nter@24509 | 15 BUILD_DEPENDS="gcc83" |
Hans-G?nter@24509 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24299 | 19 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
pascal@22688 | 23 # Rules to configure and make the package. |
pascal@22688 | 24 compile_rules() |
pascal@22688 | 25 { |
Hans-G?nter@24509 | 26 make CC=gcc-83 CXX=g++-83 && |
Hans-G?nter@24509 | 27 make install DESTDIR=$DESTDIR |
pascal@22688 | 28 } |
pascal@22688 | 29 |
pascal@22688 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@22688 | 31 genpkg_rules() |
pascal@22688 | 32 { |
Hans-G?nter@24509 | 33 cook_copy_folders bin |
pascal@22688 | 34 } |