wok annotate git-gui/receipt @ rev 15600

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 15:25:09 2013 +0000 (2013-12-05)
parents 6a11e1ebf8ee
children cfc6ddf8de74
rev   line source
ben@5738 1 # SliTaz package receipt.
ben@5738 2 PACKAGE="git-gui"
ben@6417 3 VERSION="0.13.0"
ben@5738 4 CATEGORY="development"
ben@5738 5 SHORT_DESC="Graphical interface for the Git dRCS."
ben@5738 6 MAINTAINER="ben@seawolfsanctuary.com"
pascal@15600 7 LICENSE="BSD"
ben@5738 8 WEB_SITE="http://www.kernel.org/pub/software/scm/git/docs/git-gui.html"
slaxemulator@8590 9 WGET_URL="git|http://repo.or.cz/r/git-gui.git"
slaxemulator@8590 10 BRANCH="gitgui-$VERSION"
ben@5738 11
pascal@15600 12 DEPENDS="tk git"
pascal@15600 13 BUILD_DEPENDS="$DEPENDS"
pascal@15600 14
ben@5738 15 # Rules to configure and make the package.
ben@5738 16 compile_rules()
ben@5738 17 {
slaxemulator@8590 18 cd $src
ben@5738 19 make clean
pascal@15600 20 make && make DESTDIR=$DESTDIR install
ben@5738 21 }
ben@5738 22
ben@5738 23 # Rules to gen a SliTaz package suitable for Tazpkg.
ben@5738 24 genpkg_rules()
ben@5738 25 {
ben@5738 26 mkdir -p $fs
pascal@15600 27 cp -a $install/usr $fs/
ben@5738 28
ben@5738 29 # Extra icons, .desktop file etc.:
slaxemulator@9700 30 cp -a $stuff/* $fs/usr
ben@5738 31
gokhlayeh@12066 32 mkdir -p $fs/usr/bin
shann@12077 33 ln -s /usr/lib/git-core/git-gui /usr/lib/git-core/git-citool \
gokhlayeh@12066 34 /usr/lib/git-core/git-gui--askpass $fs/usr/bin
ben@5738 35 }