mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
860706c423
Michael Bevin. It is not opensource, but versions are available for Windows and Linux. Currently (October 2005) it has the best compression ratio available. WWW: http://www.lossless-audio.com/ PR: ports/87668 Submitted by: Andrew Pantyukhin <infofarmer@gmail.com>
37 lines
746 B
Makefile
37 lines
746 B
Makefile
# New ports collection makefile for: laudio
|
|
# Date created: 18 October 2005
|
|
# Whom: Andrew Pantyukhin <infofarmer@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= laudio
|
|
PORTVERSION= 0.4
|
|
CATEGORIES?= audio linux
|
|
MASTER_SITES= http://www.lossless-audio.com/ \
|
|
http://www.csme.ru/filez/
|
|
DISTNAME= la04
|
|
|
|
MAINTAINER= infofarmer@gmail.com
|
|
COMMENT= A free lossless audio codec
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
USE_BZIP2= yes
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/laudio
|
|
PORTDOCS= readme.txt
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKDIR}/la ${PREFIX}/bin/laudio
|
|
@${BRANDELF} -t Linux ${PREFIX}/bin/laudio
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKDIR}/readme.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|