wok diff dosbox/receipt @ rev 23385
updated perl-params-validate (1.21 -> 1.29)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 31 16:01:16 2020 +0100 (2020-03-31) |
parents | 9e29d7944214 |
children | 96ef6ba30769 |
line diff
1.1 --- a/dosbox/receipt Sun May 18 19:16:29 2014 +0000 1.2 +++ b/dosbox/receipt Tue Mar 31 16:01:16 2020 +0100 1.3 @@ -1,27 +1,29 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="dosbox" 1.7 -VERSION="0.74" 1.8 +VERSION="0.74.3" 1.9 CATEGORY="system-tools" 1.10 +TAGS="emulator dos vm86 8086" 1.11 SHORT_DESC="DOS-emulator that uses the SDL-library." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WEB_SITE="http://www.dosbox.com/" 1.16 +WEB_SITE="https://www.dosbox.com/" 1.17 + 1.18 +TARBALL="$PACKAGE-${VERSION%.*}-${VERSION##*.}.tar.gz" 1.19 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.20 -TAGS="emulator dos vm86 8086" 1.21 1.22 -DEPENDS="xorg-libX11 libsdl alsa-lib zlib mesa libpng libsdl-net" 1.23 -BUILD_DEPENDS="xorg-libX11-dev libsdl-dev libsdl-net-dev " 1.24 +DEPENDS="alsa-lib libpng libsdl libsdl-net mesa xorg-libX11 zlib" 1.25 +BUILD_DEPENDS="libsdl-dev libsdl-net-dev xorg-libX11-dev" 1.26 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - cd $src 1.31 - sed -i 's/define DOSBOX_DOS_INC_H/&\n#include <stddef.h>/' include/dos_inc.h 1.32 - ./configure \ 1.33 - --prefix=/usr \ 1.34 - --mandir=/usr/share/man \ 1.35 + sed -i 's/define DOSBOX_DOS_INC_H/&\n#include <stddef.h>/' \ 1.36 + include/dos_inc.h 1.37 + 1.38 + ./configure \ 1.39 + --prefix=/usr \ 1.40 + --mandir=/usr/share/man \ 1.41 $CONFIGURE_ARGS && 1.42 make && 1.43 make DESTDIR=$DESTDIR install 1.44 @@ -30,8 +32,8 @@ 1.45 # Rules to gen a SliTaz package suitable for Tazpkg. 1.46 genpkg_rules() 1.47 { 1.48 - mkdir -p $fs/usr/share/pixmaps \ 1.49 - $fs/usr/share/applications 1.50 - cp -a $install/usr/bin $fs/usr 1.51 + mkdir -p $fs/usr/share/pixmaps 1.52 + mkdir -p $fs/usr/share/applications 1.53 + 1.54 + cp -a $install/usr/bin $fs/usr 1.55 } 1.56 -