diff options
author | grant <grant@pkgsrc.org> | 2002-02-25 03:00:49 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-02-25 03:00:49 +0000 |
commit | 8a2df381550558db69013b456b31a3797a2e07cf (patch) | |
tree | 38509ae6c61696aec64146742845247fdcbcd713 /www/ap-mp3/Makefile | |
parent | 1136470399e792fe829f72cd3220a6fce7e9d320 (diff) | |
download | pkgsrc-8a2df381550558db69013b456b31a3797a2e07cf.tar.gz |
Initial import of mod_mp3.
Apache module for streaming mp3 and other audio files.
Diffstat (limited to 'www/ap-mp3/Makefile')
-rw-r--r-- | www/ap-mp3/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www/ap-mp3/Makefile b/www/ap-mp3/Makefile new file mode 100644 index 00000000000..037024eb3af --- /dev/null +++ b/www/ap-mp3/Makefile @@ -0,0 +1,40 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/02/25 03:00:49 grant Exp $ +# + +DISTNAME= mod_mp3-0.35 +PKGNAME= ap-mp3-0.35 +CATEGORIES= www +MASTER_SITES= ftp://ftp.tangent.org/pub/apache/ \ + http://software.tangent.org/download/ + +MAINTAINER= grant@netbsd.org +HOMEPAGE= http://software.tangent.org/media/ +COMMENT= apache module for streaming mp3 files + +DEPENDS+= apache{,6}-1.3.*:../../www/apache +# For "apxs": +BUILD_DEPENDS= perl>=${PERL5_REQD}:../../lang/perl5 + +DOC_DIR= ${PREFIX}/share/httpd/htdocs/manual/mod/mod_mp3 + +do-build: + @cd ${WRKSRC}/src && ${PREFIX}/sbin/apxs -c -o mod_mp3.so \ + directives.c \ + encode.c \ + ice.c \ + load.c \ + mod_mp3.c \ + shout.c \ + utility.c \ + ogg.c \ + common.c \ + id3.c \ + log.c \ + internal_dispatch.c + +do-install: + @cd ${WRKSRC}/src && ${PREFIX}/sbin/apxs -i mod_mp3.so + ${INSTALL_DATA_DIR} ${DOC_DIR} + ${INSTALL_DATA} ${WRKSRC}/faq.html ${DOC_DIR} + +.include "../../mk/bsd.pkg.mk" |