wok annotate 915resolution/receipt @ rev 4150

midori: add Slitaz homepage
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 20:31:38 2009 +0000 (2009-09-20)
parents 9c8870edc4ee
children c2796e3d4f81
rev   line source
erjo@1150 1 # SliTaz package receipt.
erjo@1150 2
erjo@1150 3 PACKAGE="915resolution"
erjo@1150 4 VERSION="0.5.3"
erjo@1150 5 CATEGORY="system-tools"
erjo@1150 6 SHORT_DESC="Modify the video BIOS of the 800 and 900 series Intel graphics chipsets"
erjo@1150 7 MAINTAINER="erjo@slitaz.org"
erjo@1150 8 DEPENDS=""
erjo@1150 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1150 10 WEB_SITE="http://www.geocities.com/stomljen/"
erjo@1150 11 WGET_URL="http://www.geocities.com/stomljen/$TARBALL"
erjo@1150 12
erjo@1150 13 # Rules to configure and make the package.
erjo@1150 14 compile_rules()
erjo@1150 15 {
erjo@1150 16 cd $src
pascal@1796 17 for i in eeepc901.u ; do
pascal@1796 18 [ -f done.$i ] && continue
pascal@1796 19 patch -p0 < ../stuff/$i
pascal@1796 20 touch done.$i
pascal@1796 21 done
erjo@1150 22 make clean && make
jozee@3118 23 #make
erjo@1150 24 }
erjo@1150 25
erjo@1150 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1150 27 genpkg_rules()
erjo@1150 28 {
erjo@1150 29 mkdir -p $fs/usr/bin
erjo@1150 30 cp -a $src/$PACKAGE $fs/usr/bin
erjo@1150 31 cp -a $src/dump_bios $fs/usr/bin
erjo@1150 32 }
erjo@1150 33