Created
June 11, 2023 18:57
-
-
Save maietta/ebf3c890c155df5ffe17494b4a3c89e8 to your computer and use it in GitHub Desktop.
IDJC Pi 4
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
To build IDJC (Internet DJ Console) on the latest version of Ubuntu, you can follow these steps: | |
1. Update your system: | |
``` | |
sudo apt update | |
sudo apt upgrade | |
``` | |
2. Install the required dependencies: | |
``` | |
sudo apt install build-essential libjack-jackd2-dev libasound2-dev libsndfile1-dev libdbus-1-dev libfftw3-dev libid3tag0-dev libvorbis-dev libmad0-dev libshout3-dev liblrdf0-dev libxml2-dev liblash-dev liblrdf0 libasound2 libmad0 libshout3 libsndfile1 libvorbis0a libvorbisenc2 vorbis-tools librdf0 | |
``` | |
3. Download the source code for IDJC. Go to the IDJC project page on SourceForge (https://sourceforge.net/projects/idjc/) and download the latest source code package (usually a .tar.gz file). | |
4. Extract the source code: | |
``` | |
tar -xzf idjc-x.x.x.tar.gz | |
``` | |
Replace "x.x.x" with the actual version number you downloaded. | |
5. Navigate into the extracted directory: | |
``` | |
cd idjc-x.x.x | |
``` | |
6. Configure the build: | |
``` | |
./configure | |
``` | |
7. Build IDJC: | |
``` | |
make | |
``` | |
8. Install IDJC: | |
``` | |
sudo make install | |
``` | |
9. IDJC should now be installed on your system. You can launch it from the command line by typing `idjc` or search for "Internet DJ Console" in your application launcher. | |
Note: Building from source may encounter additional dependencies or errors. Make sure to carefully read any error messages and install the required dependencies accordingly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment