wok-4.x annotate winetricks/receipt @ rev 7602
mirror-tools: add scm in vhosts
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 11 13:03:20 2010 +0100 (2010-12-11) |
parents | b6835a24d78e |
children | fc59d16526d5 |
rev | line source |
---|---|
slaxemulator@6645 | 1 # SliTaz package receipt. |
slaxemulator@6645 | 2 |
slaxemulator@6645 | 3 PACKAGE="winetricks" |
slaxemulator@7273 | 4 VERSION="20101106" |
slaxemulator@6645 | 5 CATEGORY="misc" |
slaxemulator@6645 | 6 SHORT_DESC="Script to install various redistributable runtime libraries in Wine." |
slaxemulator@6645 | 7 MAINTAINER="slaxemulator@gmail.com" |
pankso@6750 | 8 DEPENDS="wine cabextract unzip zenity wget" |
slaxemulator@6645 | 9 WEB_SITE="http://wiki.winehq.org/winetricks" |
slaxemulator@6645 | 10 |
slaxemulator@6645 | 11 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@6645 | 12 genpkg_rules() |
slaxemulator@6645 | 13 { |
slaxemulator@6645 | 14 [ -f $SOURCES_REPOSITORY/$PACKAGE-$VERSION ] || |
slaxemulator@6645 | 15 wget http://www.kegel.com/wine/$PACKAGE -O $SOURCES_REPOSITORY/$PACKAGE-$VERSION |
slaxemulator@6645 | 16 |
slaxemulator@6645 | 17 mkdir -p $fs/usr/bin |
slaxemulator@6645 | 18 cp -a $SOURCES_REPOSITORY/$PACKAGE-$VERSION $fs/usr/bin/$PACKAGE |
pankso@6749 | 19 chmod a+x $fs/usr/bin/$PACKAGE |
slaxemulator@6645 | 20 } |
slaxemulator@6645 | 21 |