wok view fritzing/receipt @ rev 22757

updated ffmpegthumbnailer and ffmpegthumbnailer-dev (2.2.0 -> 2.2.2)
author Hans-G?nter Theisgen
date Fri Jan 24 16:35:42 2020 +0100 (2020-01-24)
parents 4e907eebbb35
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="fritzing"
4 VERSION="0.9.3b"
5 CATEGORY="development"
6 SHORT_DESC="Electronic Design Automation software; from prototype to product."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="http://fritzing.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/fritzing-app/archive/$VERSION.tar.gz"
14 DEPENDS="libboost-graph libQtCore libQtXml quazip"
15 BUILD_DEPENDS="libboost-dev libboost-graph-dev qmake Qt4-dev libQtNetwork \
16 quazip-dev"
17 HOST_ARCH="i486"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 qmake &&
23 make -j 1 &&
24 make INSTALL_ROOT=$install install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/${PACKAGE} $fs/usr/share
33 cp -a $install/usr/share/icons $fs/usr/share/pixmaps
34 }