wok-next view gource/receipt @ rev 20781

gnupg: add also sha1
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 05:56:31 2018 +0000 (2018-06-09)
parents 2f3aba6cc31e
children a3c581bf52b8
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="http://code.google.com/p/gource/"
11 WGET_URL="http://gource.googlecode.com/files/$TARBALL"
13 DEPENDS="freetype glew glu libboost-filesystem libboost-system libpcre libsdl \
14 libsdl-image mesa ftgl"
15 BUILD_DEPENDS="mesa-dev ftgl-dev libsdl-image-dev pcre-dev glew-dev \
16 libsdl-dev freetype-dev libboost-dev libboost-filesystem glm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 sed -i 's/boost::filesystem3::/boost::filesystem::/' src/logmill.cpp
23 ./configure $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/gource $fs/usr/share
33 }