# HG changeset patch # User Hans-G?nter Theisgen # Date 1572935603 -3600 # Node ID 5a9e9c83439a3ae1a64f2f433090762de2a34518 # Parent a767124ef9da4cd13fc44b664238400756e6c28a updated wine-rt and wine-rt-dev (1.7.16 -> 4.0.2) diff -r a767124ef9da -r 5a9e9c83439a wine-rt-dev/receipt --- a/wine-rt-dev/receipt Mon Nov 04 17:18:08 2019 +0100 +++ b/wine-rt-dev/receipt Tue Nov 05 07:33:23 2019 +0100 @@ -1,20 +1,23 @@ # SliTaz package receipt. PACKAGE="wine-rt-dev" -VERSION="1.7.16" +VERSION="4.0.2" CATEGORY="system-tools" -SHORT_DESC="Windows API for Linux development files." +SHORT_DESC="Windows API for Linux - development files." MAINTAINER="xj@wp.pl" LICENSE="LGPL2.1" -WEB_SITE="http://www.winehq.org/" +WEB_SITE="https://www.winehq.org/" + +PROVIDE="wine-dev" WANTED="wine-rt" -PROVIDE="wine-dev" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/wine $fs/usr/share - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/wine/*.a $fs/usr/lib/wine - cp -a $install/usr/lib/wine/*.def* $fs/usr/lib/wine + mkdir -p $fs/usr/lib/wine + mkdir -p $fs/usr/share + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/wine/*.a $fs/usr/lib/wine + cp -a $install/usr/lib/wine/*.def* $fs/usr/lib/wine } diff -r a767124ef9da -r 5a9e9c83439a wine-rt/receipt --- a/wine-rt/receipt Mon Nov 04 17:18:08 2019 +0100 +++ b/wine-rt/receipt Tue Nov 05 07:33:23 2019 +0100 @@ -1,26 +1,27 @@ # SliTaz package receipt. PACKAGE="wine-rt" -VERSION="1.7.16" +VERSION="4.0.2" CATEGORY="misc" +TAGS="windows" SHORT_DESC="Windows API for Linux." MAINTAINER="xj@wp.pl" LICENSE="LGPL2.1" -TARBALL="${PACKAGE%-rt}-$VERSION.tar.bz2" -WEB_SITE="http://www.winehq.org/" -WGET_URL="$SF_MIRROR/${PACKAGE%-rt}/$TARBALL" -TAGS="windows" +WEB_SITE="https://www.winehq.org/" + +TARBALL="${PACKAGE%-rt}-$VERSION.tar.xz" +WGET_URL="https://dl.winehq.org/${PACKAGE%-rt}/source/${VERSION%.*}/$TARBALL" + PROVIDE="wine" - -DEPENDS="alsa-lib libxml2 libxslt mesa libglu-mesa xorg-dev lcms freetype jpeg \ -libpng tiff" -BUILD_DEPENDS="alsa-lib-dev flex bison mesa-dev libglu-mesa-dev freetype-dev \ -libtool libxml2-dev libxslt-dev lcms-dev jpeg-dev libpng-dev tiff-dev prelink" +DEPENDS="alsa-lib freetype jpeg lcms libglu-mesa libpng libxslt libxml2 mesa \ + tiff xorg-dev" +BUILD_DEPENDS="alsa-lib-dev bison flex freetype-dev jpeg-dev lcms-dev libglu-mesa-dev \ + libpng-dev libtool libxml2-dev libxslt-dev mesa-dev prelink tiff-dev" # Rules to configure and make the package. compile_rules() { - cd $src + # since 1.7.3.2 patch -s -Np1 -i $stuff/wine-rt-101107.patch CONFIGURE_ARGS=' @@ -37,29 +38,31 @@ --without-mpg123 --without-openal --without-opencl - --without-openssl --without-oss --without-sane --without-v4l --disable-win16 --with-x ' - CFLAGS="$CFLAGS -O2 -funroll-loops -frounding-math -mfpmath=sse -msse2 \ - -fsignaling-nans -pipe" - - ./configure $CONFIGURE_ARGS && - make $MAKEFLAGS && make install + CFLAGS="$CFLAGS -O2 -funroll-loops -frounding-math -mfpmath=sse -msse2 \ + -fsignaling-nans -pipe" + + ./configure $CONFIGURE_ARGS && + make $MAKEFLAGS && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/wine $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/wine $fs/usr/share - cp -a $install/usr/share/applications $fs/usr/share - cp -a $install/usr/lib/lib* $fs/usr/lib - cp -a $install/usr/lib/wine/*.so $fs/usr/lib/wine + mkdir -p $fs/usr/lib/wine + mkdir -p $fs/usr/share + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/wine $fs/usr/share + cp -a $install/usr/share/applications $fs/usr/share + cp -a $install/usr/lib/lib* $fs/usr/lib + cp -a $install/usr/lib/wine/*.so $fs/usr/lib/wine } post_install()