wok annotate git-gui/receipt @ rev 19683
Add: mate (a package to install all MATE desktop at once)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Feb 12 00:43:16 2017 +0100 (2017-02-12) |
parents | de49f29b101e |
children | 86790a278e70 |
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" |
pascal@15661 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
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 |
pascal@15600 | 13 DEPENDS="tk git" |
pascal@15600 | 14 BUILD_DEPENDS="$DEPENDS" |
pascal@15600 | 15 |
ben@5738 | 16 # Rules to configure and make the package. |
ben@5738 | 17 compile_rules() |
ben@5738 | 18 { |
slaxemulator@8590 | 19 cd $src |
ben@5738 | 20 make clean |
pascal@15600 | 21 make && make DESTDIR=$DESTDIR install |
ben@5738 | 22 } |
ben@5738 | 23 |
ben@5738 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
ben@5738 | 25 genpkg_rules() |
ben@5738 | 26 { |
ben@5738 | 27 mkdir -p $fs |
pascal@15600 | 28 cp -a $install/usr $fs/ |
ben@5738 | 29 |
ben@5738 | 30 # Extra icons, .desktop file etc.: |
slaxemulator@9700 | 31 cp -a $stuff/* $fs/usr |
ben@5738 | 32 |
gokhlayeh@12066 | 33 mkdir -p $fs/usr/bin |
shann@12077 | 34 ln -s /usr/lib/git-core/git-gui /usr/lib/git-core/git-citool \ |
gokhlayeh@12066 | 35 /usr/lib/git-core/git-gui--askpass $fs/usr/bin |
ben@5738 | 36 } |