wok view edid-decode/receipt @ rev 24243

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