wok view dmidecode/receipt @ rev 21534

consolekit2 modified BUILD_DEPENDS
author Hans-G?nter Theisgen
date Sun May 05 11:13:36 2019 +0100 (2019-05-05)
parents 3705d68ed8f3
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="dmidecode"
4 VERSION="3.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="SMBIOS/DMI reports."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.nongnu.org/dmidecode/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|uname -m|echo i486|' Makefile
21 make -j 1 &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/sbin
29 cp -a $install/usr/local/sbin/* $fs/usr/sbin
30 }