Skip to content

Instantly share code, notes, and snippets.

@Nerten
Last active December 25, 2015 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nerten/6961498 to your computer and use it in GitHub Desktop.
Save Nerten/6961498 to your computer and use it in GitHub Desktop.
How to recompile newest version of forked-daapd on Ubuntu/Debian and build package.
Im using a virtualbox VM for building software.
Full instruction for 64bit Debian 7 from @BitProcessor here http://pastebin.com/LsbcMkDG
sudo -s
apt-get install build-essential -y fakeroot dpkg-dev git libevent1-dev dh-autoreconf
apt-get build-dep -y forked-daapd
cd /usr/src/
apt-get source forked-daapd
dpkg-source -x forked-daapd_0.19gcd-2.1.dsc
git clone https://github.com/ejurgensen/forked-daapd.git git-forked-daapd/
cp -R git-forked-daapd/* forked-daapd-0.19gcd/
cd forked-daapd-0.19gcd/
autoreconf -i
dpkg-buildpackage -rfakeroot -b
cd ..
dpkg -i forked-daapd_0.19gcd-2.1_i386.deb
Copy link

ghost commented Oct 13, 2013

On a clean Debian 7 64-bit install (not valid for ubuntu, nor 32bit)

(valid Oct. 13th, 2013)

cd /tmp
wget http://ftp.de.debian.org/debian/pool/main/libe/libevent/libevent-1.4-2_1.4.13-stable-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/libe/libevent/libevent-core-1.4-2_1.4.13-stable-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/libe/libevent/libevent-dev_1.4.13-stable-1_amd64.deb
wget http://ftp.de.debian.org/debian/pool/main/libe/libevent/libevent-extra-1.4-2_1.4.13-stable-1_amd64.deb
dpkg -i libevent-1.4-2_1.4.13-stable-1_amd64.deb
dpkg -i libevent-core-1.4-2_1.4.13-stable-1_amd64.deb
dpkg -i libevent-extra-1.4-2_1.4.13-stable-1_amd64.deb
dpkg -i libevent-dev_1.4.13-stable-1_amd64.deb
apt-get install build-essential fakeroot dpkg-dev git dh-autoreconf
apt-get build-dep forked-daapd
cd /usr/src/
apt-get source forked-daapd
git clone https://github.com/ejurgensen/forked-daapd.git git-forked-daapd/
cp -R git-forked-daapd/* forked-daapd-0.19gcd/
cd forked-daapd-0.19gcd/
autoreconf -i
dpkg-buildpackage -rfakeroot -b
cd ..
dpkg -i forked-daapd_0.19gcd-2.1_amd64.deb
apt-get -f install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment