wok view xorg-xload/receipt @ rev 22294

updated xorg-xload (1.1.1 -> 1.1.3)
author Hans-G?nter Theisgen
date Wed Nov 13 16:30:29 2019 +0100 (2019-11-13)
parents 814c58f64f83
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xload"
4 VERSION="1.1.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X application to show system resources usage."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="xload"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 DEPENDS="xorg-libXaw"
16 BUILD_DEPENDS="xorg-libXaw-dev"
18 HOST_ARCH="i486 arm"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }