wok-current rev 24509
updated edid-decode (fork-point-4 -> fork-point-5)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 20 17:31:17 2022 +0100 (2022-02-20) |
parents | 47514fe128b6 |
children | 3ef416821a7d |
files | edid-decode/description.txt edid-decode/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/edid-decode/description.txt Sun Feb 20 17:31:17 2022 +0100 1.3 @@ -0,0 +1,3 @@ 1.4 +A friendly fork of the upstream edid-decode tool (formerly maintained 1.5 +on freedesktop.org with Xorg), with an emphasis on dealing with and 1.6 +providing useful info on displays (especially HMDs) seen in the wild.
2.1 --- a/edid-decode/receipt Sun Feb 20 17:14:34 2022 +0100 2.2 +++ b/edid-decode/receipt Sun Feb 20 17:31:17 2022 +0100 2.3 @@ -1,15 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="edid-decode" 2.7 -VERSION="fork-point-4" 2.8 +VERSION="fork-point-5" 2.9 CATEGORY="misc" 2.10 -SHORT_DESC="Decode EDID data in human-readable format" 2.11 +SHORT_DESC="Decode EDID data in human-readable format." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="BSD" 2.14 +WEB_SITE="https://github.com/rpavlik/edid-decode" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://github.com/rpavlik/edid-decode" 2.18 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 2.19 2.20 +DEPENDS="gcc83-lib-base" 2.21 +BUILD_DEPENDS="gcc83" 2.22 + 2.23 current_version() 2.24 { 2.25 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 2.26 @@ -19,13 +23,12 @@ 2.27 # Rules to configure and make the package. 2.28 compile_rules() 2.29 { 2.30 - make && 2.31 - make DESTDIR=$DESTDIR install 2.32 + make CC=gcc-83 CXX=g++-83 && 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr 2.40 - cp -a $install/usr/bin $fs/usr 2.41 + cook_copy_folders bin 2.42 }