blob: 357c5b183b6916ef53b2b1d8102778f56fbe6541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# New ports collection makefile for: mod_auth_pam
# Date created: 7 April 2001
# Whom: will
#
# $FreeBSD$
#
PORTNAME= mod_mp3
PORTVERSION= 0.6
CATEGORIES= www
MASTER_SITES= http://www.tangent.org/mod_mp3/
MAINTAINER= ports@FreeBSD.org
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
APXS?= ${LOCALBASE}/sbin/apxs
do-build:
@cd ${WRKSRC} && ${APXS} -c mod_mp3.c
do-install:
${APXS} -i -A -n mp3 ${WRKSRC}/mod_mp3.so
.include <bsd.port.mk>
|