diff options
author | jlam <jlam@pkgsrc.org> | 2001-07-01 21:47:12 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-07-01 21:47:12 +0000 |
commit | 77ad21414383025293b88c820c9880ac23212c29 (patch) | |
tree | 7c7a15647c7de769b8e6e2ef50dd9aced851bd26 /audio/sox | |
parent | 106fe93a107fb194436fd46c4bd7042143fa5679 (diff) | |
download | pkgsrc-77ad21414383025293b88c820c9880ac23212c29.tar.gz |
Mark as USE_BUILDLINK_ONLY to prevent accidentally depending on installed
gsm library.
Diffstat (limited to 'audio/sox')
-rw-r--r-- | audio/sox/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index c6aacb7982f..a566d2fccf2 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2001/02/16 13:30:50 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2001/07/01 21:47:12 jlam Exp $ # FreeBSD Id: Makefile,v 1.9 1997/02/04 10:32:34 max Exp # @@ -10,17 +10,17 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://home.sprynet.com/~cbagwell/sox.html COMMENT= SOund eXchange - universal sound sample translator -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--enable-fast-ulaw \ - --enable-fast-alaw \ - --with-sun-audio \ - --without-oss-dsp +USE_BUILDLINK_ONLY= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-fast-ulaw \ + --enable-fast-alaw \ + --with-sun-audio \ + --without-oss-dsp pre-build: - cd ${WRKSRC} ; \ - [ -f play.BAK ] || ${MV} play play.BAK ; \ - ${SED} \ - -e 's|@PREFIX@|${PREFIX}|g' \ - < play.BAK >play + cd ${WRKSRC}; \ + [ -f play.BAK ] || ${MV} play play.BAK; \ + ${SED} -e "s|@PREFIX@|${PREFIX}|g" \ + play.BAK > play .include "../../mk/bsd.pkg.mk" |