wok view gource/receipt @ rev 22950

updated inotify-tools again (3.14 -> 3.20.2.2)
author Hans-G?nter Theisgen
date Fri Feb 28 14:33:03 2020 +0100 (2020-02-28)
parents 18b66ce46e4e
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="gource"
4 VERSION="0.51"
5 CATEGORY="development"
6 SHORT_DESC="Software version control visualization."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://gource.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/acaudwell/Gource/releases/download/$PACKAGE-$VERSION/$TARBALL"
14 DEPENDS="freetype ftgl glew libboost-filesystem libsdl2 libsdl2-image pcre"
15 BUILD_DEPENDS="freetype-dev ftgl-dev glew-dev glm libboost-filesystem-dev
16 libsdl2-dev libsdl2-image-dev mesa-dev pcre-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/gource $fs/usr/share
33 }