libogg-1.1.3
Build results: [binary] [files list]Build sequence:
dev# wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz dev# tar xzvf libogg-1.1.3.tar.gz dev# cd libogg-1.1.3 dev# ./configure --prefix=/mnt/C/sys dev# make dev# make install
libvorbis-1.2.0
Build results: [binary] [files list]Build sequence:
dev# wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.bz2 dev# tar xjvf libvorbis-1.2.0.tar.bz2 dev# cd libvorbis-1.2.0 dev# ./configure --prefix=/mnt/C/sys dev# make dev# make install
StreamRipper 1.63.1
Build results: [binary] [files list]Build sequence:
dev# wget http://downloads.sourceforge.net/streamripper/streamripper-1.63.1.tar.gz dev# tar xzvf streamripper-1.63.1.tar.gz dev# cd streamripper-1.63.1 dev# ./configure --prefix=/mnt/C/sys dev# make dev# make install
2 comments:
I'm trying to use this Streamripper binary but am having trouble. I should say that its entirely possible I'm doing something wrong.
I'm trying to run the file sys/bin/streamripper, but can't get the file to execute.
I've tried chmod 755 and chmod 777, and running like this:
./streamripper
I'm guessing there's something I'm missing, but possible to send over any tips?
I'd compile it myself but am using a shared webhost (Dreamweaver) so am hoping to find something precompiled.
Got it figured out. If anyone else comes here looking to compile Streamripper on Dreamhost or similar, here's the steps I took to successfully compile:
#downloading an older version of Streamripper, since the new one
#errored out saying glib was too old
wget http://downloads.sourceforge.net/streamripper/streamripper-1.62.3.tar.gz
gunzip stream*
tar -xvvf stream*
cd stream*
#Adding this prefix line got rid of some write errors I was getting.
#The folder lib is in my path. Obviously, I'm not root, I'm user "jaqueshaas".
./configure --prefix=/home/jaqueshaas/lib
make
make install
chmod 755 streamripper
Post a Comment