wok view git-gui/receipt @ rev 20204

Up suplemon (0.1.64)
author Paul Issott <paul@slitaz.org>
date Sun Feb 18 18:52:35 2018 +0000 (2018-02-18)
parents de49f29b101e
children 86790a278e70
line source
1 # SliTaz package receipt.
2 PACKAGE="git-gui"
3 VERSION="0.13.0"
4 CATEGORY="development"
5 SHORT_DESC="Graphical interface for the Git dRCS."
6 MAINTAINER="ben@seawolfsanctuary.com"
7 LICENSE="BSD"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.kernel.org/pub/software/scm/git/docs/git-gui.html"
10 WGET_URL="git|http://repo.or.cz/r/git-gui.git"
11 BRANCH="gitgui-$VERSION"
13 DEPENDS="tk git"
14 BUILD_DEPENDS="$DEPENDS"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make clean
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs
28 cp -a $install/usr $fs/
30 # Extra icons, .desktop file etc.:
31 cp -a $stuff/* $fs/usr
33 mkdir -p $fs/usr/bin
34 ln -s /usr/lib/git-core/git-gui /usr/lib/git-core/git-citool \
35 /usr/lib/git-core/git-gui--askpass $fs/usr/bin
36 }