diff options
-rw-r--r-- | network/loic/README | 5 | ||||
-rw-r--r-- | network/loic/loic.SlackBuild | 16 |
2 files changed, 10 insertions, 11 deletions
diff --git a/network/loic/README b/network/loic/README index ad349a6c36..980f39159f 100644 --- a/network/loic/README +++ b/network/loic/README @@ -10,10 +10,9 @@ packets, UDP packets, or HTTP requests with the intention of disrupting the service of a particular host. People have used LOIC to join voluntary botnets. This SlackBuild simply builds a package from the binaries included in the -source archive. Alternatively, you may opt to recompile by passing -MONODEVELOP=yes to the script. In this case monodevelop would be needed. +source archive. -In any case, you still need mono to run loic: +mono is needed to run loic: mono /opt/loic/LOIC.exe diff --git a/network/loic/loic.SlackBuild b/network/loic/loic.SlackBuild index ae60a90dfd..75da03349d 100644 --- a/network/loic/loic.SlackBuild +++ b/network/loic/loic.SlackBuild @@ -30,7 +30,7 @@ PRGNAM=loic VERSION=${VERSION:-v1.1.1.25} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} ARCH=noarch # Leave this alone @@ -51,14 +51,14 @@ cd $PRGNAM-$VERSION unzip $CWD/$PRGNAM.$VERSION.zip chown -R root:root . -if [ "$MONODEVELOP" = yes ] ;then -# This is only for those who want rebuild the binaries. -# They would need monodevelop. - mdtool -v build -f source/LOIC.sln - cp -a source/bin/Debug $PKG/opt/loic -else +## This broke for every monodevelop update, +## so now it is not supported. Sorry! +#if [ "$MONODEVELOP" = yes ] ;then +# mdtool -v build -f source/LOIC.sln +# cp -a source/bin/Debug $PKG/opt/loic +#else cp -a debug $PKG/opt/loic -fi +#fi # This for GUI users mkdir -p $PKG/usr/share/applications |