wok view libstatgrab/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 40d66aabe862
children 62c8b10473cc
line source
1 # SliTaz package receipt.
3 PACKAGE="libstatgrab"
4 VERSION="0.17"
5 CATEGORY="system-tools"
6 SHORT_DESC="Provides statistics about the system on which it's run."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.i-scream.org/libstatgrab/"
11 WGET_URL="http://ftp.uk.i-scream.org/pub/i-scream/libstatgrab/$TARBALL"
13 DEPENDS="ncursesw"
14 BUILD_DEPENDS="ncursesw-dev file"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure &&
21 make && make -j 1 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 }