View Single Post
  #4  
Old 06-10-2018, 06:28 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,071
Default

Quote:
Originally Posted by Riklin View Post
the apt-get command gives me a "unable to locate package" error.

I tried installing using this:
<code>
apt-get install libsodium-dev
</code>

it works but appears to be an older version of libsodium 1.0.0-1.

I'm going to guess I have to do this the hard way? Download the lobsodium tar file and compile it?
You should be able to manually pull down the package as well

Code:
	# Install libsodium
	wget http://ftp.us.debian.org/debian/pool/main/libs/libsodium/libsodium-dev_1.0.11-1~bpo8+1_amd64.deb -O /home/eqemu/libsodium-dev.deb
	wget http://ftp.us.debian.org/debian/pool/main/libs/libsodium/libsodium18_1.0.11-1~bpo8+1_amd64.deb -O /home/eqemu/libsodium18.deb
	dpkg -i /home/eqemu/libsodium*.deb
	# Cleanup after ourselves
	rm -f /home/eqemu/libsodium-dev.deb
	rm -f /home/eqemu/libsodium18.deb
Reply With Quote