wok view gource/receipt @ rev 14141

libmnl*: add 1.0.3
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Mar 01 08:37:16 2013 -0800 (2013-03-01)
parents 1d8243d194b8
children 2b9f96603415
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 $install/usr/bin $fs/usr
30 cp -a $install/usr/share/gource $fs/usr/share
31 }