forked from ports/contrib
29 lines
660 B
Plaintext
29 lines
660 B
Plaintext
# Description: Monkeys Audio Lossless compressor for CD audio
|
|
# URL: http://www.monkeysaudio.com/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on:
|
|
|
|
# Actually this is the ported version from
|
|
# http://sourceforge.net/projects/mac-port/
|
|
|
|
name=mac
|
|
version=3.99-u4-b5
|
|
release=1
|
|
source="
|
|
http://dl.sourceforge.net/mac-port/mac-$version.tar.gz
|
|
ape2flac
|
|
ape123
|
|
"
|
|
|
|
build()
|
|
{
|
|
install -m 755 -D ape2flac $PKG/usr/bin/ape2flac
|
|
install -m 755 -D ape123 $PKG/usr/bin/ape123
|
|
cd mac-$version
|
|
sed -i 's|-O3||' configure
|
|
./configure
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|