wok annotate git-gui/receipt @ rev 13873

dahdi-man: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 14 23:50:30 2013 +0100 (2013-01-14)
parents 7233a836cfb2
children de49f29b101e
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"
ben@5738 7 DEPENDS="tk git"
ben@5738 8 BUILD_DEPENDS="$DEPENDS"
ben@5738 9 WEB_SITE="http://www.kernel.org/pub/software/scm/git/docs/git-gui.html"
slaxemulator@8590 10 WGET_URL="git|http://repo.or.cz/r/git-gui.git"
slaxemulator@8590 11 BRANCH="gitgui-$VERSION"
ben@5738 12
ben@5738 13 # Rules to configure and make the package.
ben@5738 14 compile_rules()
ben@5738 15 {
slaxemulator@8590 16 cd $src
ben@5738 17 make clean
ben@5738 18 make && make DESTDIR=$PWD/_pkg install
ben@5738 19 }
ben@5738 20
ben@5738 21 # Rules to gen a SliTaz package suitable for Tazpkg.
ben@5738 22 genpkg_rules()
ben@5738 23 {
ben@5738 24 mkdir -p $fs
ben@5738 25 cp -a $_pkg/usr $fs/
ben@5738 26
ben@5738 27 # Extra icons, .desktop file etc.:
slaxemulator@9700 28 cp -a $stuff/* $fs/usr
ben@5738 29
gokhlayeh@12066 30 mkdir -p $fs/usr/bin
shann@12077 31 ln -s /usr/lib/git-core/git-gui /usr/lib/git-core/git-citool \
gokhlayeh@12066 32 /usr/lib/git-core/git-gui--askpass $fs/usr/bin
ben@5738 33 }