wok-next view git-gui/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents cfc6ddf8de74
children 0cbe4b1f2230
line source
1 # SliTaz package receipt v2.
3 PACKAGE="git-gui"
4 VERSION="0.13.0"
5 CATEGORY="development"
6 SHORT_DESC="Graphical interface for the Git dRCS"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://mirrors.edge.kernel.org/pub/software/scm/git/docs/git-gui.html"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="git|http://repo.or.cz/r/git-gui.git"
13 BRANCH="gitgui-$VERSION"
15 BUILD_DEPENDS="tk git"
17 compile_rules() {
18 make clean
19 make &&
20 make DESTDIR=$install install
21 }
23 genpkg_rules() {
24 mkdir -p $fs
25 cp -a $install/usr $fs/
27 # Extra icons, .desktop file etc.:
28 cp -a $stuff/* $fs/usr
30 mkdir -p $fs/usr/bin
31 ln -s /usr/lib/git-core/git-gui /usr/lib/git-core/git-citool \
32 /usr/lib/git-core/git-gui--askpass $fs/usr/bin
33 DEPENDS="tk git"
34 }