2016-11-08 19:54:10 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2016-11-09 00:37:33 +00:00
|
|
|
# - configure with --without-optimizecpu to avoid overrides to our CFLAGS
|
2016-11-08 19:54:10 +00:00
|
|
|
|
|
|
|
pkgname=motion
|
|
|
|
pkgver=4.0.1
|
2016-11-09 00:37:33 +00:00
|
|
|
pkgrel=1.2
|
2016-11-08 19:54:10 +00:00
|
|
|
pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('GPL')
|
|
|
|
url="http://www.lavrsen.dk/foswiki/bin/view/Motion/WebHome"
|
|
|
|
depends=('libjpeg' 'v4l-utils' 'ffmpeg')
|
|
|
|
backup=('etc/motion/motion.conf')
|
|
|
|
options=('!makeflags')
|
|
|
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/Motion-Project/motion/archive/release-$pkgver.tar.gz"
|
|
|
|
motion.service
|
|
|
|
motion.tmpfiles)
|
|
|
|
md5sums=('5c87f90c4118d8cf0fb14700db69118f'
|
|
|
|
'c8e9a9e9fd2dcc1ee8bcee1f32a91559'
|
|
|
|
'f863f8c025f7f025b2178def8418decd')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-release-${pkgver}"
|
|
|
|
autoreconf
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--without-pgsql \
|
|
|
|
--without-mysql \
|
|
|
|
--sysconfdir=/etc \
|
2016-11-09 00:37:33 +00:00
|
|
|
--with-ffmpeg \
|
|
|
|
--without-optimizecpu
|
2016-11-08 19:54:10 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package(){
|
|
|
|
cd "${srcdir}/${pkgname}-release-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
mv "${pkgdir}/etc/motion/motion-dist.conf" "${pkgdir}/etc/motion/motion.conf"
|
|
|
|
install -Dm644 "${srcdir}/motion.service" "${pkgdir}/usr/lib/systemd/system/motion.service"
|
|
|
|
install -Dm644 "${srcdir}/motion.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/motion.conf"
|
|
|
|
}
|