void-packages/srcpkgs/tgt/template

34 lines
978 B
Bash
Raw Normal View History

2015-01-01 21:47:18 +01:00
# Template file for 'tgt'
pkgname=tgt
2015-07-07 14:10:56 +02:00
version=1.0.60
2015-06-04 19:58:31 +02:00
revision=1
2015-01-01 21:47:18 +01:00
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="Christian Neukirchen <chneukirchen@gmail.com>"
license="GPL-3"
homepage="http://stgt.sourceforge.net/"
distfiles="https://github.com/fujita/tgt/archive/v${version}.tar.gz"
2015-07-07 14:10:56 +02:00
checksum=c126c3dc8fe51d188b979f859e6fc5bc37d76b16f7a753f2966f90382ce15641
2015-01-01 21:47:18 +01:00
2015-05-17 16:19:07 +02:00
post_extract() {
sed -i 's/CFLAGS/MYCFLAGS/; s/\$(MYCFLAGS)/& $(CFLAGS)/g' usr/Makefile
2015-05-19 20:03:07 +02:00
sed -i '1i#include <sys/user.h>' usr/tgtd.h usr/util.h
2015-05-19 19:06:09 +02:00
sed -i '1i#include <fcntl.h>' usr/libssc.c
sed -i 's/__always_inline/inline/g' usr/util.h
2015-08-31 13:40:27 +02:00
2015-05-17 16:19:07 +02:00
}
2015-01-01 21:47:18 +01:00
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
}