pkgsrc-wip/unmo3/Makefile
Ben Collver 0ccedfd503 Decodes MO3 files back to their original format.
MO3 is a file format, encapsulating the features of several "MOD" formats
(IT / XM / S3M / MTM / MOD), but with one big difference - MP3 and OGG
compressed samples. A lossless codec is also incorporated for any samples
that don't like lossy encoding, and the whole file structure is compressed
too.

All this makes it possible to have great reductions in file sizes with
practically identical sound quality. Infact, MO3 allows greater quality
compositions because MP3/OGG encoding works best with 16-bit samples, so
there's no reason to use low quality 8-bit samples anymore.

The part that is not so great about MO3 is that the specification is
closed, and so is this software.
2003-09-24 06:23:00 +00:00

31 lines
770 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2003/09/24 06:23:00 bencollver Exp $
#
DISTNAME= unmo318
PKGNAME= unmo3-1.8
WRKSRC= ${WRKDIR}
CATEGORIES= audio archivers
MASTER_SITES= http://www.un4seen.com/files/ \
http://www.un4seen.co.uk/files/
EXTRACT_SUFX= .zip
MAINTAINER= collver1@comcast.net
HOMEPAGE= http://www.un4seen.com/mo3.html
COMMENT= MO3 decoder
BUILD_DEPENDS+= upx>=1.24:../../wip/upx
ONLY_FOR_PLATFORM= NetBSD-*-i386
ONLY_FOR_PLATFORM+= Linux-*-i[3-6]86
LICENSE= no-profit
NO_BUILD= YES
CHECK_SHLIBS= NO
do-install:
${PREFIX}/bin/upx -d ${WRKSRC}/unmo3
${INSTALL_PROGRAM} ${WRKSRC}/unmo3 ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/unmo3
${INSTALL_DATA} ${WRKSRC}/unmo3.txt ${PREFIX}/share/doc/unmo3
.include "../../mk/bsd.pkg.mk"