wok-next annotate winetricks/receipt @ rev 7957
Up: mlt-python-bindings to 0.6.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Jan 15 17:23:12 2011 +0000 (2011-01-15) |
parents | fc59d16526d5 |
children | d7326c4cb56d |
rev | line source |
---|---|
slaxemulator@6645 | 1 # SliTaz package receipt. |
slaxemulator@6645 | 2 |
slaxemulator@6645 | 3 PACKAGE="winetricks" |
slaxemulator@7892 | 4 VERSION="20110105" |
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 |