# Maintainer: Sebastiaan Lokhorst # Contributor: Sergej Pupykin pkgname=motion-git _pkgname=motion pkgver=release.3.4.1.r98.g7e16a9e pkgrel=2 pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams" arch=('i686' 'x86_64') license=('GPL') url="https://motion-project.github.io/" depends=('libjpeg' 'v4l-utils' 'ffmpeg') provides=('motion') conflicts=('motion') backup=('etc/motion/motion.conf') source=($_pkgname::git+https://github.com/Motion-Project/${_pkgname}.git) md5sums=('SKIP') pkgver() { cd "${_pkgname}" git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } build() { cd "${srcdir}/${_pkgname}" autoreconf ./configure --prefix=/usr --sysconfdir=/etc --without-mysql --without-pgsql make } package(){ cd "${srcdir}/${_pkgname}" make DESTDIR="${pkgdir}" install mv "${pkgdir}"/etc/motion/motion{-dist,}.conf mv "${pkgdir}"/etc/motion/camera1{-dist,}.conf mv "${pkgdir}"/etc/motion/camera2{-dist,}.conf mv "${pkgdir}"/etc/motion/camera3{-dist,}.conf mv "${pkgdir}"/etc/motion/camera4{-dist,}.conf install -Dm644 "${pkgdir}/usr/share/motion/examples/motion.service" "${pkgdir}/usr/lib/systemd/system/motion.service" }