wok view 915resolution/receipt @ rev 25470

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 07 10:48:59 2022 +0000 (18 months ago)
parents 68cf96abc146
children c470ca10c896
line source
1 # SliTaz package receipt.
3 PACKAGE="915resolution"
4 VERSION="0.5.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Intel video BIOS hack to support certain resolutions"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="PublicDomain"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://web.archive.org/web/20210828084127/http://915resolution.mango-lang.org/"
11 WGET_URL="https://web.archive.org/web/20210828014220if_/http://915resolution.mango-lang.org/$TARBALL"
12 TAGS="widescreen resolution"
14 DEPENDS=""
16 current_version()
17 {
18 wget -O - ${WEB_SITE}download.html 2>/dev/null | \
19 sed '/href/!d;s|.*>\(.*\)<.*|\1|;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 for i in widescreen-resolution cedarview ; do
26 [ -f done.$i ] && continue
27 patch -p0 < $stuff/$PACKAGE-$VERSION-$i.patch
28 touch done.$i
29 done
30 make
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/sbin
37 install $src/$PACKAGE $fs/usr/sbin
38 install $src/dump_bios $fs/usr/sbin
39 }