Skip to content

Instantly share code, notes, and snippets.

@researcx
Created February 2, 2020 21:34
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 researcx/097dae7761a1e4361ebb57a6b6c8e6a9 to your computer and use it in GitHub Desktop.
Save researcx/097dae7761a1e4361ebb57a6b6c8e6a9 to your computer and use it in GitHub Desktop.
redir and uredir quick build
sudo dnf -y groupinstall "Development Tools"
mkdir /src
cd /src
#redir
git clone https://github.com/troglobit/redir.git
cd redir
./autogen.sh
./configure
make -j5
sudo make install-strip
cd ../
#libuev (required for uredir >3.0)
git clone https://github.com/troglobit/libuev.git
cd libuev
./autogen.sh
./configure
make -j4
make test
sudo make install-strip
sudo ldconfig
cd ../
#uredir
git clone https://github.com/troglobit/uredir.git
cd uredir
./autogen.sh
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure
make -j4
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment