wok-6.x annotate git-gui/receipt @ rev 25565
Reenable rpc for glibc, fix gpxe grub4dos receipt, fix linld url
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue May 09 17:24:00 2023 +0000 (19 months ago) |
parents | b9659e3c2111 |
children |
rev | line source |
---|---|
ben@5738 | 1 # SliTaz package receipt. |
pascal@24614 | 2 |
ben@5738 | 3 PACKAGE="git-gui" |
Hans-G?nter@21147 | 4 VERSION="0.21.0" |
ben@5738 | 5 CATEGORY="development" |
ben@5738 | 6 SHORT_DESC="Graphical interface for the Git dRCS." |
ben@5738 | 7 MAINTAINER="ben@seawolfsanctuary.com" |
pascal@15600 | 8 LICENSE="BSD" |
Hans-G?nter@21147 | 9 WEB_SITE="https://www.kernel.org/pub/software/scm/git/docs/git-gui.html" |
Hans-G?nter@21147 | 10 |
pascal@15661 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@21183 | 12 WGET_URL="git|git://repo.or.cz/git-gui.git" |
slaxemulator@8590 | 13 BRANCH="gitgui-$VERSION" |
ben@5738 | 14 |
pascal@15600 | 15 DEPENDS="tk git" |
pascal@15600 | 16 BUILD_DEPENDS="$DEPENDS" |
pascal@15600 | 17 |
pascal@24545 | 18 # What is the latest version available today? |
pascal@24545 | 19 current_version() |
pascal@24545 | 20 { |
pascal@24614 | 21 wget -O - https://repo.or.cz/git-gui.git/shortlog 2>/dev/null | \ |
pascal@24545 | 22 sed '/<td title=/!d;s|.*<i>||;s|</.*||;s|-||g;q' |
pascal@24545 | 23 } |
pascal@24545 | 24 |
ben@5738 | 25 # Rules to configure and make the package. |
ben@5738 | 26 compile_rules() |
ben@5738 | 27 { |
ben@5738 | 28 make clean |
Hans-G?nter@21147 | 29 make -j 1 && |
Hans-G?nter@21147 | 30 make DESTDIR=$DESTDIR install |
ben@5738 | 31 } |
ben@5738 | 32 |
ben@5738 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
ben@5738 | 34 genpkg_rules() |
ben@5738 | 35 { |
ben@5738 | 36 mkdir -p $fs |
pascal@15600 | 37 cp -a $install/usr $fs/ |
ben@5738 | 38 |
ben@5738 | 39 # Extra icons, .desktop file etc.: |
slaxemulator@9700 | 40 cp -a $stuff/* $fs/usr |
ben@5738 | 41 |
gokhlayeh@12066 | 42 mkdir -p $fs/usr/bin |
Hans-G?nter@21147 | 43 |
Hans-G?nter@21147 | 44 ln -s /usr/lib/git-core/git-gui \ |
Hans-G?nter@21147 | 45 /usr/lib/git-core/git-citool \ |
Hans-G?nter@21147 | 46 /usr/lib/git-core/git-gui--askpass \ |
Hans-G?nter@21147 | 47 $fs/usr/bin |
ben@5738 | 48 } |