wok view winetricks/receipt @ rev 25691

Up lynis (3.1.1), ncurses-examples (20211021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 16 10:43:04 2024 +0000 (4 weeks ago)
parents 3a7e1f5c8913
children
line source
1 # SliTaz package receipt.
3 PACKAGE="winetricks"
4 VERSION="20220411"
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 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
21 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_folders bin
34 }