wok view winetricks/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 487896f99311
children 3a7e1f5c8913
line source
1 # SliTaz package receipt.
3 PACKAGE="winetricks"
4 VERSION="20200412"
5 CATEGORY="misc"
6 SHORT_DESC="Script to install various redistributable runtime libraries in Wine."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.winehq.org/Winetricks"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/Winetricks/$PACKAGE/archive/$VERSION.tar.gz"
14 SUGGESTED="zenity"
15 DEPENDS="cabextract unzip wget wine xorg-xmessage"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }