wok annotate libavc1394/receipt @ rev 18517

xset-screensaver.sh: some fixes
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun Oct 25 03:23:44 2015 +0100 (2015-10-25)
parents 7c45e0692e5d
children 86790a278e70
rev   line source
pankso@295 1 # SliTaz package receipt.
pankso@295 2
pankso@295 3 PACKAGE="libavc1394"
slaxemulator@12383 4 VERSION="0.5.4"
pankso@295 5 CATEGORY="system-tools"
pankso@295 6 SHORT_DESC="Interface for the 1394 Trade Association AV/C Digital Interface."
pankso@295 7 MAINTAINER="pankso@slitaz.org"
pascal@14714 8 LICENSE="LGPL2.1"
pankso@295 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@295 10 WEB_SITE="http://sourceforge.net/projects/libavc1394/"
pankso@295 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@295 12
pascal@14714 13 DEPENDS="libraw1394"
pascal@14714 14 BUILD_DEPENDS="libraw1394-dev"
pascal@14714 15
pankso@295 16 # Rules to configure and make the package.
pankso@295 17 compile_rules()
pankso@295 18 {
pankso@295 19 cd $src
pankso@295 20 ./configure \
pankso@295 21 --prefix=/usr \
pankso@295 22 --mandir=/usr/share/man \
pankso@295 23 $CONFIGURE_ARGS
pankso@295 24 make
slaxemulator@12383 25 make DESTDIR=$DESTDIR install
pankso@295 26 }
pankso@295 27
pankso@295 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@295 29 genpkg_rules()
pankso@295 30 {
pankso@295 31 mkdir -p $fs/usr/lib
pascal@14714 32 cp -a $install/usr/bin $fs/usr
pascal@14714 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@295 34 }
pankso@295 35