wok-stable view 915resolution/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents 279e3851f876
children b50e6276ecc8
line source
1 # SliTaz package receipt.
3 PACKAGE="915resolution"
4 VERSION="0.5.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Widescreen support; modify video BIOS of the 800 and 900 series Intel graphics chipsets"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://915resolution.mango-lang.org/"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 TAGS="widescreen resolution"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 for i in $PACKAGE-$VERSION-widescreen-resolution.patch ; do
19 [ -f done.$i ] && continue
20 patch -p0 < ../stuff/$i
21 touch done.$i
22 done
23 make clean && make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $src/$PACKAGE $fs/usr/bin
31 cp -a $src/dump_bios $fs/usr/bin
32 }