mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
c98c38080a
------------------------ From the README file ------------------------ amp (Audio Mpeg Player) is an MPEG audio decoder which I originally started putting together as a side project of the MPEG hardware design project at FER/Zagreb - just to confirm my knowledge of the standard. It works with both MPEG1 and MPEG2 audio streams (except for the multichannel extensions defined in MPEG2), layer3 only for now. ---------------------------- End of quote ---------------------------- PR: 3935 Submitted by: Vanill I. Shu <vanilla@MinJe.com.TW>
26 lines
484 B
Makefile
26 lines
484 B
Makefile
# New ports collection makefile for: amp
|
|
# Version required: 0.7.3
|
|
# Date created: Jun 23 1997
|
|
# Whom: Vanilla I. Shu <vanilla@MinJe.com.TW>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= amp-0.7.3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.rasip.fer.hr/pub/mpeg/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= vanilla@MinJe.com.TW
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= amp.1
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/amp ${PREFIX}/bin
|
|
@ ${INSTALL_DATA} ${WRKSRC}/amp.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|