wok view uml-utilities/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 3105f866bc3e
children 7dd01dedad38
line source
1 # SliTaz package receipt.
3 PACKAGE="uml-utilities"
4 SOURCE="uml_utilities"
5 VERSION="20070815"
6 CATEGORY="utilities"
7 SHORT_DESC="The User Mode Linux utilities."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="${SOURCE}_$VERSION.tar.bz2"
11 WEB_SITE="http://user-mode-linux.sourceforge.net/"
12 WGET_URL="${WEB_SITE}$TARBALL"
13 SUGGESTED="linux-uml"
15 DEPENDS="readline ncurses fuse2"
16 BUILD_DEPENDS="readline-dev fuse2-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - http://user-mode-linux.sourceforge.net/downloads.html 2>/dev/null | \
22 sed '/tarball/!d;s|.*ies_||;s|.tar.*||'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 sed -i 's|uname -m|echo i486|' Makefile
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }