wok annotate 915resolution/receipt @ rev 13841

get-LibreOffice: busybox does not support ? wildcard anymore. bug?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 08 10:29:56 2013 +0100 (2013-01-08)
parents b50e6276ecc8
children 164afa784523
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"
jozee@4586 6 SHORT_DESC="Widescreen support; modify 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"
jozee@4586 10 WEB_SITE="http://915resolution.mango-lang.org/"
jozee@4586 11 WGET_URL="$WEB_SITE/$TARBALL"
jozee@4586 12 TAGS="widescreen resolution"
erjo@1150 13
erjo@1150 14 # Rules to configure and make the package.
erjo@1150 15 compile_rules()
erjo@1150 16 {
erjo@1150 17 cd $src
pascal@12028 18 for i in widescreen-resolution cedarview ; do
pascal@1796 19 [ -f done.$i ] && continue
pascal@12028 20 patch -p0 < $stuff/$PACKAGE-$VERSION-$i.patch
pascal@1796 21 touch done.$i
pascal@1796 22 done
jozee@4586 23 make clean && 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