wok view libgtop/receipt @ rev 20443

Add python-smspdu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 13 18:04:04 2018 +0200 (2018-09-13)
parents 3705d68ed8f3
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="libgtop"
4 VERSION="2.28.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Librairies for GNOME"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="glib"
14 BUILD_DEPENDS="glib-dev intltool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|uname -m|echo i486|' src/Makefile* src/daemon/Makefile*
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }