wok view git-gui/receipt @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents 4f63fc63a16d
children b9659e3c2111
line source
1 # SliTaz package receipt.
2 PACKAGE="git-gui"
3 VERSION="0.21.0"
4 CATEGORY="development"
5 SHORT_DESC="Graphical interface for the Git dRCS."
6 MAINTAINER="ben@seawolfsanctuary.com"
7 LICENSE="BSD"
8 WEB_SITE="https://www.kernel.org/pub/software/scm/git/docs/git-gui.html"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="git|git://repo.or.cz/git-gui.git"
12 BRANCH="gitgui-$VERSION"
14 DEPENDS="tk git"
15 BUILD_DEPENDS="$DEPENDS"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make clean
21 make -j 1 &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs
29 cp -a $install/usr $fs/
31 # Extra icons, .desktop file etc.:
32 cp -a $stuff/* $fs/usr
34 mkdir -p $fs/usr/bin
36 ln -s /usr/lib/git-core/git-gui \
37 /usr/lib/git-core/git-citool \
38 /usr/lib/git-core/git-gui--askpass \
39 $fs/usr/bin
40 }