35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Template file for 'tgt'
|
|
pkgname=tgt
|
|
version=1.0.73
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_install_args="sbindir=/usr/bin"
|
|
conf_files="/etc/tgt/targets.conf"
|
|
make_dirs="/etc/tgt/conf.d 0755 root root"
|
|
hostmakedepends="libxslt docbook-xsl"
|
|
depends="perl-Config-General"
|
|
short_desc="Linux SCSI target framework"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-3"
|
|
homepage="http://stgt.sourceforge.net/"
|
|
distfiles="https://github.com/fujita/tgt/archive/v${version}.tar.gz"
|
|
checksum=2e3899a2235386a68df8cbf0eccb6a44e221a3e9e6bd9215c903c3fc9ed34bbf
|
|
|
|
post_extract() {
|
|
sed -i 's/CFLAGS/MYCFLAGS/; s/\$(MYCFLAGS)/& $(CFLAGS)/g' usr/Makefile
|
|
sed -i '/^LDFLAGS/d; /CC.*-o/s/$/ $(LDFLAGS)/' usr/Makefile
|
|
sed -i '1i#include <sys/user.h>' usr/tgtd.h usr/util.h
|
|
sed -i '1i#include <fcntl.h>' usr/libssc.c
|
|
sed -i '1i#include <sys/sysmacros.h>' usr/bs_sg.c
|
|
sed -i 's/__always_inline/inline/g' usr/util.h
|
|
|
|
}
|
|
post_install() {
|
|
for f in ${DESTDIR}/etc/tgt/examples/*; do
|
|
vsconf $f
|
|
rm $f
|
|
done
|
|
|
|
vman doc/manpages/targets.conf.5
|
|
rm -rf ${DESTDIR}/usr/share/doc/tgt/html
|
|
}
|