diff options
author | jlam <jlam@pkgsrc.org> | 2008-03-02 06:10:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-03-02 06:10:30 +0000 |
commit | 76ed4a57975c0d7c08dcc86ebda15457c3e83793 (patch) | |
tree | e69a307404c85a610aac593940553b400d40a654 /audio/csound5-manual | |
parent | 5c458b597ca0742153b3a339088ba80f14b598ef (diff) | |
download | pkgsrc-76ed4a57975c0d7c08dcc86ebda15457c3e83793.tar.gz |
Mechanical changes to add full DESTDIR support to packages that install
their files via a custom do-install target.
Diffstat (limited to 'audio/csound5-manual')
-rw-r--r-- | audio/csound5-manual/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/csound5-manual/Makefile b/audio/csound5-manual/Makefile index 4e91cb55ddf..e8161c22da0 100644 --- a/audio/csound5-manual/Makefile +++ b/audio/csound5-manual/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2006/12/15 14:34:19 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2008/03/02 06:10:31 jlam Exp $ # DISTNAME= Csound${CSOUND_VERSION}_manual_html @@ -12,6 +12,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.csounds.com/ COMMENT= Csound5 Reference Manual +PKG_DESTDIR_SUPPORT= user-destdir + CSOUND_VERSION= 5.01 NO_BUILD= yes WRKSRC= ${WRKDIR}/html @@ -21,6 +23,6 @@ EXTRACT_OPTS_ZIP= -aqo INSTALLATION_DIRS+= share/doc/csound5 do-install: - cd ${WRKSRC} && ${PAX} -rw * ${PREFIX}/share/doc/csound5 + cd ${WRKSRC} && ${PAX} -rw * ${DESTDIR}${PREFIX}/share/doc/csound5 .include "../../mk/bsd.pkg.mk" |