wok view 915resolution/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents 19fff4ad1644
children
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 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/current/!d;s|.*, ||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 for i in widescreen-resolution cedarview ; do
27 [ -f done.$i ] && continue
28 patch -p0 < $stuff/$PACKAGE-$VERSION-$i.patch
29 touch done.$i
30 done
31 make
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/sbin
38 install $src/$PACKAGE $fs/usr/sbin
39 install $src/dump_bios $fs/usr/sbin
40 }