wok annotate screenfetch/receipt @ rev 20805
syslinux/iso2exe: add a MessageBox for Win9x (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 16 19:05:06 2019 +0100 (2019-02-16) |
parents | a72d91973e3e |
children | 8eaf1d9eb640 |
rev | line source |
---|---|
paul@16867 | 1 # SliTaz package receipt. |
paul@16867 | 2 |
paul@16867 | 3 PACKAGE="screenfetch" |
paul@16867 | 4 VERSION="3.5.0" |
paul@16867 | 5 CATEGORY="utilities" |
paul@16867 | 6 SHORT_DESC="Bash screenshot information tool." |
paul@16867 | 7 MAINTAINER="paul@slitaz.org" |
pascal@17216 | 8 LICENSE="GPL3" |
paul@16867 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@16867 | 10 WEB_SITE="https://github.com/KittyKatt/screenFetch" |
paul@16867 | 11 WGET_URL="git|git://github.com/KittyKatt/screenFetch" |
paul@16867 | 12 |
paul@16867 | 13 DEPENDS="bash procps xorg-xdpyinfo" |
paul@16867 | 14 BUILD_DEPENDS="git bzip2" |
paul@16867 | 15 |
paul@16867 | 16 # Rules to configure and make the package. |
paul@16867 | 17 compile_rules() |
paul@16867 | 18 { |
paul@16867 | 19 cd $src |
paul@16867 | 20 # patch for SliTaz (use basic artwork - job for artwork team?) |
paul@16867 | 21 patch -i ../../stuff/slitaz.patch |
paul@16867 | 22 } |
paul@16867 | 23 |
paul@16867 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@16867 | 25 genpkg_rules() |
paul@16867 | 26 { |
paul@16867 | 27 mkdir -p $fs/usr/bin |
paul@16867 | 28 cp -a $src/screenfetch-dev $fs/usr/bin/screenfetch |
paul@16867 | 29 } |
paul@16867 | 30 |