wok view fbff/receipt @ rev 23561

updated python-simplejson (2.1.1 -> 3.17.0)
author Hans-G?nter Theisgen
date Tue Apr 07 07:51:57 2020 +0100 (2020-04-07)
parents 6e8b1bcb30e2
children b9659e3c2111
line source
1 # SliTaz package receipt.
3 PACKAGE="fbff"
4 VERSION="20170211"
5 CATEGORY="multimedia"
6 TAGS="video"
7 SHORT_DESC="FFmpeg client in frame buffer."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://repo.or.cz/w/fbff.git"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="git|git://repo.or.cz/fbff.git"
15 DEPENDS="ffmpeg zlib"
16 BUILD_DEPENDS="ffmpeg-dev zlib-dev libgnutls"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 case "$ARCH" in
23 arm*) sed -i s"#/opt#/cross/$ARCH/sysroot/usr#" Makefile ;;
24 esac &&
25 sed -i s"/cc/${HOST_SYSTEM}-gcc/" Makefile &&
26 make
27 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp $src/fbff $fs/usr/bin
35 }