diff options
Diffstat (limited to '')
-rw-r--r-- | spot-on/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/spot-on/PKGBUILD b/spot-on/PKGBUILD new file mode 100644 index 0000000..c7a031c --- /dev/null +++ b/spot-on/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=spot-on +pkgver=0.09.04 +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') +makedepends=('qt5-base' 'geoip>=1.5.1' 'libgcrypt>=1.5' 'openssl>=0.9.8' 'lksctp-tools' 'qt5-tools' 'make' 'gcc') +source=("https://downloads.sourceforge.net/project/spot-on/Version%20${pkgver}/Spot-On.d.tar.gz") +sha256sums=('2c75307d52e9e3ee61a35e5406905a9f3a08d61423a36fe1d5c74bb70936936d') + + +build() { + cd "$srcdir/spot-on.d/branches/$pkgver" + qmake-qt5 -o Makefile spot-on.qt5.pro + make +} + +package () { + cd "$srcdir/spot-on.d/branches/$pkgver" + install -dm755 -- "$pkgdir/usr/lib" + install -m755 -- ../../libSpotOn/libspoton.so "$pkgdir/usr/lib/libspoton.so" + install -dm755 -- "$pkgdir/usr/lib/spot-on" + install -m755 -- Spot-On "$pkgdir/usr/lib/spot-on/Spot-On" + install -m755 -- Spot-On "$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" +} + |