Created
January 9, 2014 00:03
-
-
Save oneman/8327108 to your computer and use it in GitHub Desktop.
juca juca juca
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Getting Source: | |
mkdir kode | |
cd kode | |
git clone https://github.com/krad-radio/krad_radio.git | |
cd krad_radio | |
Updating source: | |
git pull | |
Seeing whats going on with source: | |
git log | |
git status | |
Setting up compiling: | |
./autogen.sh | |
Configuring the build: | |
./configure | |
./configure --help shows options, the relavent ones: | |
./configure --prefix=/usr --enable-tools | |
this will build some extra tools that are useful, and it will install things to /usr/bin | |
do the actual build: | |
make -j2 | |
If it works, install it: | |
sudo make install | |
krad_radio is the daemon | |
kr is the command line interface | |
to run a debugging daemon so you can see whats going on: | |
NOTIFY_SOCKET=debug krad_radio jucastation | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment