gnunet-rpm

GNUnet RPM package rules
Log | Files | Refs | README

commit 0ff82ad96dd35766998efdb7e3066eb8365bf73f
Author: Devan Carpenter <git@dvn.me>
Date:   Sat, 16 Nov 2019 16:02:29 -0800

basic initial dependency installation notes

Diffstat:
Ainstall-notes.md | 17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/install-notes.md b/install-notes.md @@ -0,0 +1,17 @@ +``` +# Install Deps +zypper install libtool autoconf make makeinfo gettext-tools gcc openssl \ + libgcrypt-devel libunistring-devel miniupnpc \ + libidn-devel zlib-devel libglpk40 libjansson-devel \ + libgnutls-devel libsqlite3-0 libmicrohttpd-devel \ + libopus-devel libpulse-devel libogg-devel sqlite3-devel \ + libzbar-devel libgnutls-dane-devel + +# Install libextractor from the experimental repo +zypper addrepo https://download.opensuse.org/repositories/filesharing/openSUSE_Tumbleweed/filesharing.repo +zypper refresh +zypper install libextractor + +# Set the repo priority to 100 so that it is deprioritized +zypper modifyrepo -p 100 filesharing +```