wok-6.x diff gource/receipt @ rev 22096
Up fsarchiver (0.8.5)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 01 10:48:55 2019 +0100 (2019-11-01) |
parents | e3f377fbc5f0 |
children | 25abe1edd77f |
line diff
1.1 --- a/gource/receipt Thu Jan 24 17:15:36 2019 +0100 1.2 +++ b/gource/receipt Fri Nov 01 10:48:55 2019 +0100 1.3 @@ -1,33 +1,35 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gource" 1.7 -VERSION="0.38" 1.8 +VERSION="0.49" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="software version control visualization" 1.11 +SHORT_DESC="Software version control visualization." 1.12 MAINTAINER="slaxemulator@gmail.com" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="https://gource.io/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="https://gource.io/" 1.18 -WGET_URL="http://gource.googlecode.com/files/$TARBALL" 1.19 +WGET_URL="https://github.com/acaudwell/Gource/releases/download/$PACKAGE-$VERSION/$TARBALL" 1.20 1.21 -DEPENDS="ftgl libsdl libsdl-image pcre glew freetype libboost-filesystem" 1.22 -BUILD_DEPENDS="mesa-dev ftgl-dev libsdl-image-dev pcre-dev glew-dev \ 1.23 -libsdl-dev freetype-dev libboost-filesystem-dev glm" 1.24 +DEPENDS="freetype ftgl glew libboost-filesystem libsdl2 libsdl2-image pcre" 1.25 +BUILD_DEPENDS="freetype-dev ftgl-dev glew-dev glm libboost-filesystem-dev \ 1.26 + libsdl2-dev libsdl2-image-dev mesa-dev pcre-dev" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 - cd $src 1.32 - sed -i 's/boost::filesystem3::/boost::filesystem::/' src/logmill.cpp 1.33 + # By now (0.49) changed in source file: 1.34 + # sed -i 's/boost::filesystem3::/boost::filesystem::/' src/logmill.cpp 1.35 + 1.36 ./configure $CONFIGURE_ARGS && 1.37 - make && make install 1.38 + make -j 1 && 1.39 + make install 1.40 } 1.41 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 mkdir -p $fs/usr/share 1.46 - cp -a $install/usr/bin $fs/usr 1.47 - cp -a $install/usr/share/gource $fs/usr/share 1.48 + cp -a $install/usr/bin $fs/usr 1.49 + cp -a $install/usr/share/gource $fs/usr/share 1.50 } 1.51 -