summaryrefslogtreecommitdiff
path: root/pcr/mosquitto
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@parabola.nu>2013-04-29 16:39:28 -0300
committerNicolás Reynolds <fauno@parabola.nu>2013-04-29 16:39:28 -0300
commit9000b22a1aec1b5bde1777d31bd4234f86100343 (patch)
tree0aa3ee582322f513f926f3b2bcc60a4ee3ce26ea /pcr/mosquitto
parent6b7c637c12b8bbf1b2483ce378ffc475fb7a438e (diff)
Upgraded and added .service
Diffstat (limited to 'pcr/mosquitto')
-rw-r--r--pcr/mosquitto/PKGBUILD27
-rw-r--r--pcr/mosquitto/mosquitto.service22
2 files changed, 38 insertions, 11 deletions
diff --git a/pcr/mosquitto/PKGBUILD b/pcr/mosquitto/PKGBUILD
index 0a7209f0b..652e75691 100644
--- a/pcr/mosquitto/PKGBUILD
+++ b/pcr/mosquitto/PKGBUILD
@@ -1,23 +1,24 @@
# This is the PKGBUILD for mosquitto, an MQTT broker and example clients
-# Maintainer: Dan Anderson <dan-anderson@cox.net>
-# Contributor: Gordon JC Pearce <gordon@gjcp.net>
+# Maintainer: Alexander Rust <mail at alr dot st>
+# Contributor: Dan Anderson <dan-anderson at cox dptnet>
pkgname=mosquitto
-pkgver=1.1
-pkgrel=1
-pkgdesc="An MQTT broker and clients"
-arch=(i686 x86_64 mips64el)
+pkgver=1.1.3
+pkgrel=2
+pkgdesc="An Open Source MQTT v3.1 Broker"
+arch=('i686' 'x86_64' 'arm' 'armv6h' 'mips64el')
url="http://mosquitto.org/"
makedepends=('python')
optdepends=('python: python support')
license=('BSD')
-source=(http://mosquitto.org/files/source/$pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('ab51f64eb3f0041402073aa7865f3ec4'
- '76fbc38a2eb0b8110caf7ac1f43d4057')
+source=(http://mosquitto.org/files/source/$pkgname-$pkgver.tar.gz{,.asc} "$pkgname.service" )
+md5sums=('fd0cae17221d778b0a002c31e6c3de9e'
+ 'SKIP'
+ 'b7cdd7a65d9a7ac5a8c2456f4b1f2d8f')
build() {
cd "$srcdir/$pkgname-$pkgver"
-# Remove hardcoded prefix
+ #Remove hardcoded prefix
find -name Makefile -exec sed '/prefix=/d' -i {} \;
make prefix=/usr
@@ -26,7 +27,11 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
make prefix=/usr DESTDIR="$pkgdir/" install
-
+
+ # Systemd service file
+ install -Dm644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
+
+ # License files
install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
install -Dm644 LICENSE-3rd-party.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE-3rd-party
}
diff --git a/pcr/mosquitto/mosquitto.service b/pcr/mosquitto/mosquitto.service
new file mode 100644
index 000000000..7e9ef7cc8
--- /dev/null
+++ b/pcr/mosquitto/mosquitto.service
@@ -0,0 +1,22 @@
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+[Unit]
+Description=Mosquitto MQTT Broker daemon
+ConditionPathExists=/etc/mosquitto/mosquitto.conf
+Requires=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf -d
+ExecStartPre=/bin/rm -f /var/run/mosquitto.pid
+PIDFile=/var/run/mosquitto.pid
+Restart=on-abort
+
+[Install]
+WantedBy=multi-user.target
+