wok view open-iscsi/receipt @ rev 20252

pulseaudio: force 32 bits arch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 18:38:37 2018 +0100 (2018-03-12)
parents 9e01bc6321ea
children e1df1504e6cb
line source
1 # SliTaz package receipt.
3 PACKAGE="open-iscsi"
4 VERSION="2.0-871"
5 CATEGORY="network"
6 SHORT_DESC="Implementation of RFC3720 userland utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.open-iscsi.org/"
11 WGET_URL="${WEB_SITE}bits/$TARBALL"
13 DEPENDS="linux-scsi"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i 's/ install_kernel / /' Makefile
19 sed -i 's|dirent.h>|&\n#include <sys/types.h>\n#include <sys/stat.h>|' \
20 usr/iscsi_sysfs.c
21 sed -i "s|/etc/iscsi/initiatorname.iscsi|$DESTDIR&|" Makefile
22 make user 2>&1 | grep -v 'slitaz/build/Makefile'
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/etc $fs
30 cp -a $install/sbin $fs
31 }
33 post_install()
34 {
35 if [ ! -f "$1/etc/iscsi/initiatorname.iscsi" ]; then
36 echo "InitiatorName=$($1/sbin/iscsi-iname)" > "$1/etc/iscsi/initiatorname.iscsi"
37 fi
38 }