Sha256: 31df29fa4c09df19030a63d717d911185461e7f6b3925c5e13cb98dc5ca55b4e

Contents?: true

Size: 490 Bytes

Versions: 4

Compression:

Stored size: 490 Bytes

Contents

#!/bin/sh
if test -e Makefile; then
	make clean
fi
options="$@"
echo "using options: $options"
CFLAGS="-march=i686" ./configure --disable-modules --with-cpu=x86_dither $options &&
cd src/libmpg123 &&
make &&
cp .libs/libmpg123-0.dll ../../ &&
cp .libs/libmpg123-0.dll.def ../../libmpg123-0.def
cd ../../ &&
echo "Now run that lib tool... perhaps you want to strip, too.
Hints:
	strip --strip-unneeded libmpg123-0.dll
	lib /machine:i386 /def:libmpg123-0.def" ||
echo You got some trouble.


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
seal-0.1.3 mpg123/makedll.sh
seal-0.1.2 mpg123/makedll.sh
seal-0.1.1 mpg123/makedll.sh
seal-0.1.0 mpg123/makedll.sh