2010-07-27 21:19:44 +04:00
|
|
|
###############################################################################
|
|
|
|
# Copyright (C) 2010 Lawrence Livermore National Security, LLC.
|
|
|
|
# Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
|
|
|
###############################################################################
|
|
|
|
# Build targets for TGZ packages.
|
|
|
|
#
|
|
|
|
# Long term native distro specific Slackware style packaging should be added.
|
|
|
|
# In the short term RPM packages are built and converted to TGZ packages
|
|
|
|
# using alien. If someone familiar with Slackware style packaging were to
|
|
|
|
# update the build system to correctly build Slackware style packages I would
|
|
|
|
# happily take it. Until then we will have to make due with alien.
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
tgz-local:
|
|
|
|
@(if test "${HAVE_ALIEN}" = "no"; then \
|
|
|
|
echo -e "\n" \
|
|
|
|
"*** Required util ${ALIEN} missing. Please install the\n" \
|
|
|
|
"*** package for your distribution which provides ${ALIEN},\n" \
|
|
|
|
"*** re-run configure, and try again.\n"; \
|
|
|
|
exit 1; \
|
|
|
|
fi)
|
|
|
|
|
2013-02-08 23:02:08 +04:00
|
|
|
tgz-kmod: tgz-local rpm-kmod
|
2012-07-17 12:08:22 +04:00
|
|
|
if CONFIG_KERNEL
|
2013-02-08 23:02:08 +04:00
|
|
|
name=${PACKAGE}; \
|
|
|
|
version=${VERSION}-${RELEASE}; \
|
|
|
|
arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
|
|
|
pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \
|
|
|
|
fakeroot $(ALIEN) --scripts --to-tgz $$pkg1; \
|
|
|
|
$(RM) $$pkg1
|
2012-07-17 12:08:22 +04:00
|
|
|
endif
|
2010-07-27 21:19:44 +04:00
|
|
|
|
|
|
|
tgz-utils: tgz-local rpm-utils
|
2012-07-17 12:08:22 +04:00
|
|
|
if CONFIG_USER
|
2010-07-27 21:19:44 +04:00
|
|
|
name=${PACKAGE}; \
|
2013-02-08 23:02:08 +04:00
|
|
|
version=${VERSION}-${RELEASE}; \
|
2011-06-16 22:49:38 +04:00
|
|
|
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
|
2010-07-27 21:19:44 +04:00
|
|
|
pkg1=$${name}-$${version}.$${arch}.rpm; \
|
|
|
|
fakeroot $(ALIEN) --scripts --to-tgz $$pkg1; \
|
|
|
|
$(RM) $$pkg1
|
2012-07-17 12:08:22 +04:00
|
|
|
endif
|
2010-07-27 21:19:44 +04:00
|
|
|
|
2013-02-08 23:02:08 +04:00
|
|
|
tgz: tgz-kmod tgz-utils
|