wok view open-iscsi/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents ca38ecbe9976
children 7364ffdaaa60
line source
1 # SliTaz package receipt.
3 PACKAGE="open-iscsi"
4 VERSION="2.0.873"
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="https://www.open-iscsi.com/"
11 WGET_URL="https://github.com/open-iscsi/open-iscsi/archive/refs/tags/$VERSION.tar.gz"
13 DEPENDS="linux-scsi"
14 BUILD_DEPENDS="linux-module-headers"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://github.com/open-iscsi/open-iscsi/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 sed -i 's/ install_kernel / /' Makefile
27 sed -i 's|dirent.h>|&\n#include <sys/types.h>\n#include <sys/stat.h>|' \
28 usr/iscsi_sysfs.c
29 make KSRC=/usr/src/linux KARCH=i686 user
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/etc $fs
37 cp -a $install/sbin $fs
38 }
40 post_install()
41 {
42 if [ ! -f "$1/etc/iscsi/initiatorname.iscsi" ]; then
43 echo "InitiatorName=$($1/sbin/iscsi-iname)" > "$1/etc/iscsi/initiatorname.iscsi"
44 fi
45 }