mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-09 23:51:37 +01:00
62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
# Contributor: Katie Holly <holly@fuslvz.ws>
|
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Contributor: Mika Havela <mika.havela@gmail.com>
|
|
# Maintainer: Mika Havela <mika.havela@gmail.com>
|
|
pkgname=motion
|
|
pkgver=4.1.1
|
|
pkgrel=1
|
|
pkgdesc="Detect if a significant part of the picture has changed (e.g. from a webcam)."
|
|
url="https://motion-project.github.io"
|
|
arch="all"
|
|
options="!check"
|
|
license="GPL-2.0"
|
|
pkgusers="motion"
|
|
pkggroups="motion"
|
|
depends="jpeg v4l-utils ffmpeg"
|
|
depends_dev=""
|
|
makedepends="$depends_dev autoconf automake bash jpeg-dev v4l-utils-dev linux-headers ffmpeg-dev"
|
|
install="$pkgname.pre-install"
|
|
subpackages="$pkgname-doc"
|
|
# ffmpeg4.patch courtesy of Arch Linux
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Motion-Project/$pkgname/archive/release-$pkgver.tar.gz
|
|
motion.confd
|
|
motion.initd
|
|
motion-dist.conf.in.patch
|
|
ffmpeg4.patch
|
|
"
|
|
|
|
builddir="$srcdir"/$pkgname-release-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
autoreconf -fiv
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--without-pgsql \
|
|
--without-mysql \
|
|
--without-sqlite3 \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--without-optimizecpu
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
install -d -o "$pkgusers" -g "$pkggroups" "$pkgdir"/var/run/motion
|
|
install -d -o "$pkgusers" -g "$pkggroups" "$pkgdir"/var/lib/motion # Default config is configured to store captures here
|
|
install -Dm644 "$srcdir"/"$pkgname".confd "$pkgdir"/etc/conf.d/"$pkgname"
|
|
install -Dm755 "$srcdir"/"$pkgname".initd "$pkgdir"/etc/init.d/"$pkgname"
|
|
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="3b08d464f9243ccfc4b53b16cfc2001d1e0d206bf0295d55d8914914bc14ad0248ce5ac622cb7eb89ed32e1913a9a10add1b56497c4094ba876f7f85d6ad4143 motion-4.1.1.tar.gz
|
|
8a67b5b0360924e58ba3136a737ce73bb43201a49b2b6e2c632426561b830f6ab55cbbeaa89be7f1683aa8fd322b4f31b9f560e67a93eaceb964c9f56ceef363 motion.confd
|
|
be30f19595dba27f2d0ca8133c93e134161781935a152bd1701e581410039e37742acd11987c38e6e64f495b1fd2b0a74a8c61ae0e6e211a475fca7994172501 motion.initd
|
|
c27d7ded3ed7a56101791bca86eb083450f5b8a1f431b3f7ee8538f682ac5f5d4b50104d9d61f40be964f1f1975a114313ba3d30d7357035dc25ebe925db6a89 motion-dist.conf.in.patch
|
|
808a43fe51dd2d9436320fa3ba3ac3b3f87c829b276f175b52c77313acaa647dda43cd2acc0f9c6a3106ca0dec568ee12c6db7ad89cc49f501e34cd223bfb65e ffmpeg4.patch"
|