wok view gource/receipt @ rev 13306

Move to wok shake
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 29 10:48:43 2012 +0200 (2012-08-29)
parents 679eac52e631
children 6b09507225ec
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://code.google.com/p/gource/"
10 WGET_URL="http://gource.googlecode.com/files/$TARBALL"
12 DEPENDS="ftgl libsdl libsdl-image pcre glew freetype libboost-filesystem"
13 BUILD_DEPENDS="mesa-dev ftgl-dev libsdl-image-dev pcre-dev glew-dev \
14 libsdl-dev freetype-dev libboost-filesystem-dev glm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/boost::filesystem3::/boost::filesystem::/' src/logmill.cpp
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/gource $fs/usr/share
31 }