wok diff edid-decode/receipt @ rev 24955
updated nano and nano-doc (4.8 -> 6.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Apr 23 16:34:46 2022 +0100 (2022-04-23) |
parents | ac8ca9758df1 |
children |
line diff
1.1 --- a/edid-decode/receipt Sat Jan 15 15:21:40 2022 +0000 1.2 +++ b/edid-decode/receipt Sat Apr 23 16:34:46 2022 +0100 1.3 @@ -1,15 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="edid-decode" 1.7 -VERSION="fork-point-4" 1.8 +VERSION="fork-point-5" 1.9 CATEGORY="misc" 1.10 -SHORT_DESC="Decode EDID data in human-readable format" 1.11 +SHORT_DESC="Decode EDID data in human-readable format." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 +WEB_SITE="https://github.com/rpavlik/edid-decode" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://github.com/rpavlik/edid-decode" 1.18 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 1.19 1.20 +DEPENDS="gcc83-lib-base" 1.21 +BUILD_DEPENDS="gcc83" 1.22 + 1.23 current_version() 1.24 { 1.25 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 1.26 @@ -19,13 +23,12 @@ 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - make && 1.31 - make DESTDIR=$DESTDIR install 1.32 + make CC=gcc-83 CXX=g++-83 && 1.33 + make install DESTDIR=$DESTDIR 1.34 } 1.35 1.36 # Rules to gen a SliTaz package suitable for Tazpkg. 1.37 genpkg_rules() 1.38 { 1.39 - mkdir -p $fs/usr 1.40 - cp -a $install/usr/bin $fs/usr 1.41 + cook_copy_folders bin 1.42 }