wok view gource/receipt @ rev 20673

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 17:15:36 2019 +0100 (2019-01-24)
parents 2b9f96603415
children 18b66ce46e4e
line source
1 # SliTaz package receipt.
3 PACKAGE="gource"
4 VERSION="0.38"
5 CATEGORY="development"
6 SHORT_DESC="software version control visualization"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://gource.io/"
11 WGET_URL="http://gource.googlecode.com/files/$TARBALL"
13 DEPENDS="ftgl libsdl libsdl-image pcre glew freetype libboost-filesystem"
14 BUILD_DEPENDS="mesa-dev ftgl-dev libsdl-image-dev pcre-dev glew-dev \
15 libsdl-dev freetype-dev libboost-filesystem-dev glm"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 sed -i 's/boost::filesystem3::/boost::filesystem::/' src/logmill.cpp
22 ./configure $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/gource $fs/usr/share
32 }