e399c10c50
+ add VENDOR so you can change TNF to a different one without hacking the source code + add the -t flag to transform the package into a compressed file. This is a change from the current behaviour which always compresses the file, but you have to uncompress and transform it when you want to install packages with the OS. + add the -d flag to change /var/spool/pkg to a different directory, this is also for the support to build packages directly on a machine from which you install new machines. + ARCH=\"Sparc\" is wrong, it has to be ARCH=\"sparc\" otherwise an installtion of an package during an OS install would fail + duplicate the PKG= line and rename it to PKGDIR=, otherwise an installation during an OS installation fails when you forget to add the package to a different file. + fix symlinks properly
18 lines
404 B
Makefile
18 lines
404 B
Makefile
# $NetBSD: Makefile,v 1.8 2000/01/04 12:06:58 agc Exp $
|
|
#
|
|
|
|
DISTNAME= gensolpkg-1.6
|
|
CATEGORIES= pkgtools
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
|
|
MAINTAINER= agc@netbsd.org
|
|
HOMEPAGE= http://www.westley.demon.co.uk/software.html
|
|
|
|
ONLY_FOR_PLATFORM= SunOS-*-* # uses Solaris pkgmk(1)
|
|
|
|
MAKE_ENV+= CPPFLAGS="" CC=${CC}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${MAKE} install PREFIX=${PREFIX}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|