Created
October 6, 2016 08:40
-
-
Save beshkenadze/15558b021a8509db8cadfa41bcda0aa7 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
wget -c https://github.com/transmission/transmission/archive/2.92.tar.gz && \ | |
tar xvfJ transmission-2.92.tar.xz && \ | |
cd transmission-2.92 && \ | |
./configure --prefix="/usr/src/build/transmission" --without-gtk --disable-libnotify --disable-mac --disable-wx --disable-beos --enable-utp --disable-nls --enable-inotify --enable-lightweight --enable-daemon --with-zlib="/usr/src/build" PKG_CONFIG="/usr/bin/pkg-config" PKG_CONFIG_PATH="/usr/src/build/lib/pkgconfig" CPPFLAGS=-DTR_EMBEDDED && \ | |
make && \ | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment