wok-current view Qt5Designer/receipt @ rev 25728

Merge wok for both arch and few updates
author Stanislas Leduc <shann@slitaz.org>
date Thu Dec 05 08:39:45 2024 +0000 (6 weeks ago)
parents 7f4f0b699c28
children
line source
1 # SliTaz package receipt.
3 PACKAGE="Qt5Designer"
4 VERSION="5.14.2"
5 CATEGORY="development"
6 TAGS="qt"
7 SHORT_DESC="Qt5 Designer."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL3 LGPL3"
10 WEB_SITE="https://www.qt.io/"
12 DEPENDS="expat fontconfig freetype glib libpng libQt5Core
13 libQt5Designer libQt5Gui libQt5Network libQt5Script libQt5Svg
14 libQt5Xml xorg-libICE xorg-libSM xorg-libX11 xorg-libXau
15 xorg-libXdmcp xorg-libXext xorg-libXi xorg-libXrandr
16 xorg-libXrender zlib"
17 WANTED="qt5"
19 HOST_ARCH="i486 x86_64"
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 mkdir -p $fs/usr/share/pixmaps
26 mkdir -p $fs/usr/share/applications
28 cp -a $install/usr/bin/designer* $fs/usr/bin
29 cp -a $install/usr/bin/linguist* $fs/usr/bin
30 cp -a $install/usr/bin/assistant* $fs/usr/bin
32 # add missing icons
33 cp -a $src/qttools/src/assistant/assistant/images/assistant.png \
34 $fs/usr/share/pixmaps
35 cp -a $src/qttools/src/designer/src/designer/images/designer.png \
36 $fs/usr/share/pixmaps
37 cp -a $src/qttools/src/linguist/linguist/images/icons/linguist-16-32.png \
38 $fs/usr/share/pixmaps
40 # add .desktop files
41 cp -a stuff/* $fs/usr/share/applications
42 }