# SliTaz package receipt. PACKAGE="ipmitool" VERSION="1.8.16" CATEGORY="network" SHORT_DESC="IPMIv1.5 or IPMIv2.0 LAN interface" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="https://sourceforge.net/projects/ipmitool/" WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL" DEPENDS="libcrypto zlib ncurses" BUILD_DEPENDS="openssl-dev ncurses-dev zlib-dev readline-dev" # Rules to configure and make the package. compile_rules() { ./configure --prefix=/usr \ --enable-intf-open \ --enable-ipmishell \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share cp -a $install/usr/bin $fs/usr cp -a $install/usr/sbin $fs/usr cp -a $install/usr/share/ipmitool $fs/usr/share }