# HG changeset patch # User Hans-G?nter Theisgen # Date 1645374677 -3600 # Node ID 92ffb94dcac0ec39b755dec9a7a6b9ab93a473de # Parent 47514fe128b6535420859be51941491906cda7c7 updated edid-decode (fork-point-4 -> fork-point-5) diff -r 47514fe128b6 -r 92ffb94dcac0 edid-decode/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/edid-decode/description.txt Sun Feb 20 17:31:17 2022 +0100 @@ -0,0 +1,3 @@ +A friendly fork of the upstream edid-decode tool (formerly maintained +on freedesktop.org with Xorg), with an emphasis on dealing with and +providing useful info on displays (especially HMDs) seen in the wild. diff -r 47514fe128b6 -r 92ffb94dcac0 edid-decode/receipt --- a/edid-decode/receipt Sun Feb 20 17:14:34 2022 +0100 +++ b/edid-decode/receipt Sun Feb 20 17:31:17 2022 +0100 @@ -1,15 +1,19 @@ # SliTaz package receipt. PACKAGE="edid-decode" -VERSION="fork-point-4" +VERSION="fork-point-5" CATEGORY="misc" -SHORT_DESC="Decode EDID data in human-readable format" +SHORT_DESC="Decode EDID data in human-readable format." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://github.com/rpavlik/edid-decode" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/rpavlik/edid-decode" WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="gcc83" + current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ @@ -19,13 +23,12 @@ # Rules to configure and make the package. compile_rules() { - make && - make DESTDIR=$DESTDIR install + make CC=gcc-83 CXX=g++-83 && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }