wok-next view gource/receipt @ rev 15589
Add some license
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Dec 02 17:47:06 2013 +0000 (2013-12-02) | 
| parents | 6b09507225ec | 
| children | 2f3aba6cc31e | 
 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="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 }