wok-4.x view winetricks/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents ffbe5660aea1
children 29f1d0caaa4d
line source
1 # SliTaz package receipt.
3 PACKAGE="winetricks"
4 VERSION="20101008"
5 CATEGORY="misc"
6 SHORT_DESC="Script to install various redistributable runtime libraries in Wine."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="wine cabextract unzip zenity wget"
9 WEB_SITE="http://wiki.winehq.org/winetricks"
11 # Rules to gen a SliTaz package suitable for Tazpkg.
12 genpkg_rules()
13 {
14 [ -f $SOURCES_REPOSITORY/$PACKAGE-$VERSION ] ||
15 wget http://www.kegel.com/wine/$PACKAGE -O $SOURCES_REPOSITORY/$PACKAGE-$VERSION
17 mkdir -p $fs/usr/bin
18 cp -a $SOURCES_REPOSITORY/$PACKAGE-$VERSION $fs/usr/bin/$PACKAGE
19 chmod a+x $fs/usr/bin/$PACKAGE
20 }