diff options
Diffstat (limited to '')
-rw-r--r-- | spot-on/PKGBUILD | 30 | ||||
l--------- | spot-on/upload | 1 | ||||
-rwxr-xr-x | spot-on/watch | 20 |
3 files changed, 0 insertions, 51 deletions
diff --git a/spot-on/PKGBUILD b/spot-on/PKGBUILD deleted file mode 100644 index db5bb18..0000000 --- a/spot-on/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# Maintainer: Mattias Andrée <m@`base64 -d`(bWFhbmRyZWU).se> - -pkgname=spot-on -pkgver=2017.01.20 -pkgrel=1 -pkgdesc='An exploratory research project investigating a variety of communications protocols' -url='http://spot-on.sourceforge.net/' -arch=('i686' 'x86_64') -license=('custom:3-clause BSD') -depends=('qt5-base' 'geoip>=1.5.1' 'libgcrypt>=1.5' 'openssl>=0.9.8' 'lksctp-tools' 'qt5-multimedia' "libspoton=${pkgver}" 'libntru' 'qt5-declarative') -makedepends=('qt5-base' 'geoip>=1.5.1' 'libgcrypt>=1.5' 'openssl>=0.9.8' 'lksctp-tools' 'qt5-multimedia' 'qt5-tools' 'make' 'gcc' 'qt5-declarative') -source=("Spot-On-${pkgver}.zip::http://downloads.sourceforge.net/project/spot-on/Version%20${pkgver}/Spot-On-Src.d.zip?r=") -sha256sums=('45ff31d37092f653c0b94b4dc47b16f64c4b1327841bacfd8a4f624b63a6e04c') - - -build() { - cd "$srcdir/spot-on.d/branches/trunk" - qmake-qt5 -o Makefile spot-on.qt5.pro - make -} - -package () { - cd "$srcdir/spot-on.d/branches/trunk" - install -dm755 -- "$pkgdir/usr/lib/spot-on" - install -m755 -- Spot-On "$pkgdir/usr/lib/spot-on/Spot-On" - install -m755 -- Spot-On-Kernel "$pkgdir/usr/lib/spot-on/Spot-On-Kernel" - install -dm755 -- "$pkgdir/usr/bin" - ln -s ../lib/spot-on/Spot-On -- "$pkgdir/usr/bin/spot-on" -} - diff --git a/spot-on/upload b/spot-on/upload deleted file mode 120000 index 1e7a8be..0000000 --- a/spot-on/upload +++ /dev/null @@ -1 +0,0 @@ -../upload
\ No newline at end of file diff --git a/spot-on/watch b/spot-on/watch deleted file mode 100755 index 20cdc6f..0000000 --- a/spot-on/watch +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -[ -f 'index.html' ] && rm 'index.html' -wget http://spot-on.sourceforge.net/ >/dev/null 2>/dev/null -if [ $? = 0 ]; then - [ -f unfetchable ] && rm unfetchable - grep 'has been released' < index.html | md5sum > new-sum - touch sum - if [ "$(cat sum)" = "$(cat new-sum)" ]; then - rm new-sum - else - mv new-sum sum - echo 'dooble' - fi - rm index.html -elif [ ! -f unfetchable ]; then - touch unfetchable - echo 'dooble (unfetchable)' -fi - |