wok-next view qiviewer/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt.
3 PACKAGE="qiviewer"
4 VERSION="0.5.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Light and fast QT based images viewer"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/samkpo/qiviewer"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://qiviewer.googlecode.com/files/$TARBALL"
14 BUILD_DEPENDS="cmake Qt4-dev qmake xorg-dev"
16 compile_rules() {
17 cd $src/src
18 qmake &&
19 make &&
20 make INSTALL_ROOT=$install install &&
21 sed -i s'/Name=qiviewer/Name=Qiviewer/' $install/usr/share/applications/*
22 }
24 genpkg_rules() {
25 mkdir -p $fs/usr/share/applications
26 cp -a $install/usr/bin $fs/usr
27 DEPENDS="libx11 libQtCore libQtGui"
28 }