3d8ef5a52d
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
35 lines
818 B
Makefile
35 lines
818 B
Makefile
# $NetBSD: Makefile,v 1.9 2008/05/26 02:13:21 joerg Exp $
|
|
#
|
|
|
|
DISTNAME= vs233
|
|
PKGNAME= sr-examples-2.3.3
|
|
PKGREVISION= 1
|
|
CATEGORIES= lang parallel
|
|
MASTER_SITES= ftp://ftp.cs.arizona.edu/sr/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= is@NetBSD.org
|
|
HOMEPAGE= http://www.cs.arizona.edu/sr/
|
|
COMMENT= The SR language compiler and run time system
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
NO_EXTRACT= yes
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
### Use the second line below for installing if you want to make print-PLIST!
|
|
DOMOD=
|
|
#DOMOD=-pm
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX:Q}/share/examples/sr
|
|
cd ${DESTDIR}${PREFIX:Q}/share/examples/sr && \
|
|
pax -zr ${DOMOD} -f ${DISTDIR:Q}/${DISTFILES:Q} \
|
|
-s ,vsuite/examples,., \
|
|
vsuite/examples
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|