diff options
author | Chris Abela <kristofru@gmail.com> | 2011-11-07 19:19:35 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-11-26 09:08:07 -0600 |
commit | efd3cdc37ea38162383a272d0cc88483c2a3a9e3 (patch) | |
tree | e4745e05ce91a58d18fdc673739d2aeac8079a47 /network/loic | |
parent | e8f10d48a8fbf2ce876e55f19e236c7065e6c0de (diff) | |
download | slackbuilds-efd3cdc37ea38162383a272d0cc88483c2a3a9e3.tar.gz |
network/loic: Build bump, removed source build option.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'network/loic')
-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 |