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-14 19:05:26 +00:00
|
|
|
pkgrel=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')
|
2016-11-14 19:05:26 +00:00
|
|
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/Motion-Project/motion/archive/release-$pkgver.tar.gz")
|
|
|
|
sha256sums=('2f67669a09ce0481ecd987028dae1c5cb135dfdc3c254c06ab7c9ca0c6c183f0')
|
2016-11-08 19:54:10 +00:00
|
|
|
|
|
|
|
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
|
2016-11-14 19:05:26 +00:00
|
|
|
install -Dm644 "motion-dist.conf" "${pkgdir}/etc/motion/motion.conf"
|
|
|
|
install -Dm644 "motion.service" "${pkgdir}/usr/lib/systemd/system/motion.service"
|
2016-11-08 19:54:10 +00:00
|
|
|
}
|