wok view motion/receipt @ rev 11980

remove extensions from desktop files
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Mar 02 15:07:47 2012 -0800 (2012-03-02)
parents
children 3c13a1e665f2
line source
1 # SliTaz package receipt.
3 PACKAGE="motion"
4 VERSION="3.2.12"
5 CATEGORY="multimedia"
6 SHORT_DESC="Motion is a program that monitors the video signal from cameras."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libpthread-stubs jpeg ffmpeg"
9 BUILD_DEPENDS="$DEPENDS jpeg-dev ffmpeg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.lavrsen.dk/foswiki/bin/view/Motion"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --sysconfdir=/etc/motion &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/etc $fs
28 cp -a $_pkg/usr/bin $fs/usr
29 chmod 0644 $fs/etc/motion/*
30 }