wok view git-gui/receipt @ rev 16934

Add mailsync
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 21 15:17:30 2014 +0200 (2014-07-21)
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 }