aboutsummaryrefslogtreecommitdiff
path: root/community/transmission/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2023-02-13 15:34:10 +0100
committerCem Keylan <cem@ckyln.com>2023-02-13 15:34:10 +0100
commit7acd06f01cf80e4afbcdcae42479b58375a23262 (patch)
treeeeacf80e9e1a996b669cdce1fe6736b0483b74f1 /community/transmission/build
parent668d26620ca2a3dc357ce289fdd19035e22bfc16 (diff)
downloadrepository-7acd06f01cf80e4afbcdcae42479b58375a23262.tar.gz
transmission: drop from repository
It's quite unfortunate to see a great tool such as transmission go completely south with a single release. It seems the developers worked really hard to crap on the source (by switching from C to C++, adding unnecessary new dependencies etc.) and the build system (by switching from autoconf to CMake). People, if you are really inclined for some reason to switch to a new build system, at least switch to Meson and not CMake. It's $CURRENT_YEAR for heaven's sake.
Diffstat (limited to 'community/transmission/build')
-rwxr-xr-xcommunity/transmission/build16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/transmission/build b/community/transmission/build
deleted file mode 100755
index 85fda36c..00000000
--- a/community/transmission/build
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh -e
-
-./configure \
- --prefix=/usr \
- --sbindir=/usr/bin \
- --mandir=/usr/share/man \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --disable-nls \
- --enable-daemon \
- --enable-utp \
- --without-systemd-daemon \
- --without-gtk
-
-make LDFLAGS=-all-static
-make DESTDIR="$1" install