summaryrefslogtreecommitdiff
path: root/community/motion/PKGBUILD
blob: 55b4fd07fa019fe10bf28a88cee4d9f52a5f2fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# $Id: PKGBUILD 70406 2012-05-05 14:52:58Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=motion
pkgver=3.2.12
pkgrel=4
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/twiki/bin/view/Motion/WebHome"
depends=('ffmpeg' 'libjpeg' 'v4l-utils')
backup=('etc/motion/motion.conf')
options=('!makeflags')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
	rc.motion
	ffmpeg-0.8.patch
	linux-headers.patch)
md5sums=('1ba0065ed50509aaffb171594c689f46'
         '2e8c53c4980edddd420f08fdd572c9be'
         'd36687710837d69fbce4608b1345fa34'
         'd8c3c4fdded5cfbd729710475559a21d')
sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd'
          '47536a115d4df7497f6e6c616b76ea98e3372e29'
          '6912448db0711f85322505ee6f8052f8f98ae634'
          '6f33dab895ae398cc5e7017cbf5dc5d728f3ca9e')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  patch -Np1 -i $srcdir/ffmpeg-0.8.patch
  patch -Np1 -i $srcdir/linux-headers.patch
  ./configure --prefix=/usr \
    --without-pgsql \
    --without-mysql \
    --sysconfdir=/etc/motion
  make
}

package(){
  cd "${srcdir}/${pkgname}-${pkgver}"
  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"
}