wok-current annotate screenfetch/receipt @ rev 16867
Add screenfetch
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Jul 13 14:06:51 2014 +0100 (2014-07-13) |
parents | |
children | cc6bbcf323fa |
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" |
paul@16867 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@16867 | 9 WEB_SITE="https://github.com/KittyKatt/screenFetch" |
paul@16867 | 10 WGET_URL="git|git://github.com/KittyKatt/screenFetch" |
paul@16867 | 11 |
paul@16867 | 12 DEPENDS="bash procps xorg-xdpyinfo" |
paul@16867 | 13 BUILD_DEPENDS="git bzip2" |
paul@16867 | 14 |
paul@16867 | 15 # Rules to configure and make the package. |
paul@16867 | 16 compile_rules() |
paul@16867 | 17 { |
paul@16867 | 18 cd $src |
paul@16867 | 19 # patch for SliTaz (use basic artwork - job for artwork team?) |
paul@16867 | 20 patch -i ../../stuff/slitaz.patch |
paul@16867 | 21 } |
paul@16867 | 22 |
paul@16867 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@16867 | 24 genpkg_rules() |
paul@16867 | 25 { |
paul@16867 | 26 mkdir -p $fs/usr/bin |
paul@16867 | 27 cp -a $src/screenfetch-dev $fs/usr/bin/screenfetch |
paul@16867 | 28 } |
paul@16867 | 29 |