diff options
author | joerg <joerg@pkgsrc.org> | 2006-09-19 18:32:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-09-19 18:32:50 +0000 |
commit | e3c6b091a5c5d558e6cdd09ced7d64df005ac161 (patch) | |
tree | 2eb4c3c81b9ee01f3dd5c57caa92a9229cd65bcd /emulators | |
parent | 4b79c261d8fa1f1fa059ce50bb7f0cdc0eed5be2 (diff) | |
download | pkgsrc-e3c6b091a5c5d558e6cdd09ced7d64df005ac161.tar.gz |
Requires pax and gzcat as tools.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/hercules-images/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/hercules-images/Makefile b/emulators/hercules-images/Makefile index 08c9b179cfe..48c17eae63a 100644 --- a/emulators/hercules-images/Makefile +++ b/emulators/hercules-images/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2006/03/04 21:29:35 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2006/09/19 18:32:50 joerg Exp $ DISTNAME= mftr33 PKGNAME= hercules-images-20010222 @@ -13,10 +13,11 @@ WRKSRC= ${WRKDIR} NO_BUILD= yes NO_CONFIGURE= yes EXTRACT_ONLY= +USE_TOOLS+= gzcat pax do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/data/hercules cd ${PREFIX}/share/data/hercules && \ - (${GZCAT} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; dd if=/dev/zero bs=10k count=2) | ${PAX} -O -r + (gzcat ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; dd if=/dev/zero bs=10k count=2) | pax -O -r .include "../../mk/bsd.pkg.mk" |