summaryrefslogtreecommitdiff
path: root/community/motion
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-09-25 00:23:17 -0700
committerroot <root@rshg054.dnsready.net>2012-09-25 00:23:17 -0700
commit9ddf3e5a94b0848cdf9e6ffcc586576bb614bc13 (patch)
tree6b81ad2acdf24efb0e3a131110ebe97d4b9ed599 /community/motion
parent8f0a971364bf8fee254a13a94adf2bfa9173e804 (diff)
Tue Sep 25 00:23:14 PDT 2012
Diffstat (limited to 'community/motion')
-rw-r--r--community/motion/PKGBUILD10
-rw-r--r--community/motion/motion.service12
-rw-r--r--community/motion/motion.tmpfiles1
3 files changed, 21 insertions, 2 deletions
diff --git a/community/motion/PKGBUILD b/community/motion/PKGBUILD
index 962c4ae28..bc727a0e4 100644
--- a/community/motion/PKGBUILD
+++ b/community/motion/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 73478 2012-07-08 09:30:42Z ibiru $
+# $Id: PKGBUILD 76588 2012-09-24 09:58:09Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=motion
pkgver=3.2.12
-pkgrel=6
+pkgrel=7
pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams"
arch=('i686' 'x86_64')
license=('GPL')
@@ -13,11 +13,15 @@ backup=('etc/motion/motion.conf')
options=('!makeflags')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
rc.motion
+ motion.service
+ motion.tmpfiles
ffmpeg-0.8.patch
linux-headers.patch
ffmpeg-compat.patch)
md5sums=('1ba0065ed50509aaffb171594c689f46'
'2e8c53c4980edddd420f08fdd572c9be'
+ 'b5b589f8f39939b7a1802cbd9dbe2e1a'
+ 'f863f8c025f7f025b2178def8418decd'
'd36687710837d69fbce4608b1345fa34'
'd8c3c4fdded5cfbd729710475559a21d'
'e85c596292aceb425fcf17e5072e2fff')
@@ -42,4 +46,6 @@ package(){
make DESTDIR="${pkgdir}" install
mv "${pkgdir}/etc/motion/motion-dist.conf" "${pkgdir}/etc/motion/motion.conf"
install -Dm755 "${srcdir}/rc.motion" "${pkgdir}/etc/rc.d/motion"
+ install -Dm644 "${srcdir}/motion.service" "${pkgdir}/usr/lib/systemd/system/motion.service"
+ install -Dm644 "${srcdir}/motion.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/motion.conf"
}
diff --git a/community/motion/motion.service b/community/motion/motion.service
new file mode 100644
index 000000000..23aba29cd
--- /dev/null
+++ b/community/motion/motion.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Motion daemon
+After=local-fs.target
+
+[Service]
+ExecStart=/usr/bin/motion
+Type=forking
+#StandardOutput=null
+StandardError=null
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/motion/motion.tmpfiles b/community/motion/motion.tmpfiles
new file mode 100644
index 000000000..b558b66df
--- /dev/null
+++ b/community/motion/motion.tmpfiles
@@ -0,0 +1 @@
+D /var/run/motion 0755 root root