wok annotate git-gui/receipt @ rev 22178

corrected font-manager again
author Hans-G?nter Theisgen
date Sat Nov 09 11:39:06 2019 +0100 (2019-11-09)
parents 4f63fc63a16d
children b9659e3c2111
rev   line source
ben@5738 1 # SliTaz package receipt.
ben@5738 2 PACKAGE="git-gui"
Hans-G?nter@21147 3 VERSION="0.21.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"
Hans-G?nter@21147 8 WEB_SITE="https://www.kernel.org/pub/software/scm/git/docs/git-gui.html"
Hans-G?nter@21147 9
pascal@15661 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@21183 11 WGET_URL="git|git://repo.or.cz/git-gui.git"
slaxemulator@8590 12 BRANCH="gitgui-$VERSION"
ben@5738 13
pascal@15600 14 DEPENDS="tk git"
pascal@15600 15 BUILD_DEPENDS="$DEPENDS"
pascal@15600 16
ben@5738 17 # Rules to configure and make the package.
ben@5738 18 compile_rules()
ben@5738 19 {
ben@5738 20 make clean
Hans-G?nter@21147 21 make -j 1 &&
Hans-G?nter@21147 22 make DESTDIR=$DESTDIR install
ben@5738 23 }
ben@5738 24
ben@5738 25 # Rules to gen a SliTaz package suitable for Tazpkg.
ben@5738 26 genpkg_rules()
ben@5738 27 {
ben@5738 28 mkdir -p $fs
pascal@15600 29 cp -a $install/usr $fs/
ben@5738 30
ben@5738 31 # Extra icons, .desktop file etc.:
slaxemulator@9700 32 cp -a $stuff/* $fs/usr
ben@5738 33
gokhlayeh@12066 34 mkdir -p $fs/usr/bin
Hans-G?nter@21147 35
Hans-G?nter@21147 36 ln -s /usr/lib/git-core/git-gui \
Hans-G?nter@21147 37 /usr/lib/git-core/git-citool \
Hans-G?nter@21147 38 /usr/lib/git-core/git-gui--askpass \
Hans-G?nter@21147 39 $fs/usr/bin
ben@5738 40 }