1 | %define qtver 5.13.1 |
2 | |
3 | Summary: A professional CAD system |
4 | Name: qcad |
5 | Version: 3.23.0.4 |
6 | Release: %mkrel 2 |
7 | Group: Graphics/Editors and Converters |
8 | License: GPLv3 with exceptions or CC-BY or GPLv2+ or LGPLv2+ or BSD |
9 | URL: http://www.qcad.org |
10 | Source0: https://github.com/qcad/qcad/archive/v%{version}/%{name}-%{version}.tar.gz |
11 | Source1: qt-labs-qtscriptgenerator-5.13.1.pro |
12 | Patch0: qcad-3.19.2.2-use-system-spatialindex.patch |
13 | |
14 | # minimal BuildRequires |
15 | BuildRequires: qttools5 |
16 | BuildRequires: pkgconfig(Qt5Concurrent) |
17 | BuildRequires: pkgconfig(Qt5Core) |
18 | BuildRequires: pkgconfig(Qt5Gui) |
19 | BuildRequires: pkgconfig(Qt5Designer) |
20 | BuildRequires: pkgconfig(Qt5Network) |
21 | BuildRequires: pkgconfig(Qt5OpenGL) |
22 | BuildRequires: pkgconfig(Qt5PrintSupport) |
23 | BuildRequires: pkgconfig(Qt5Qml) |
24 | BuildRequires: pkgconfig(Qt5Quick) |
25 | BuildRequires: pkgconfig(Qt5Script) |
26 | BuildRequires: pkgconfig(Qt5Sql) |
27 | BuildRequires: pkgconfig(Qt5Svg) |
28 | BuildRequires: pkgconfig(Qt5Xml) |
29 | BuildRequires: pkgconfig(Qt5XmlPatterns) |
30 | BuildRequires: pkgconfig(Qt5ScriptTools) |
31 | BuildRequires: pkgconfig(Qt5Help) |
32 | BuildRequires: pkgconfig(glu) |
33 | BuildRequires: spatialindex-devel |
34 | |
35 | # extra BuildRequires and simular Requires for additional plugins, which were not installed by BuildRequires above |
36 | BuildRequires: qtimageformats5 |
37 | Requires: qtimageformats5 |
38 | Requires: qttranslations5 |
39 | |
40 | %description |
41 | QCad is a professional CAD System. With QCad you can easily construct |
42 | and change drawings with ISO-text and many other features and save |
43 | them as DXF-files. These DXF-files are the interface to many |
44 | CAD-systems such as AutoCAD(TM) and many others. |
45 | |
46 | %prep |
47 | %autosetup -p1 |
48 | |
49 | rm -rf src/3rdparty/spatialindexnavel/include/spatialindex |
50 | |
51 | %__mkdir_p %{_builddir}/%{name}-%{version}/src/3rdparty/qt-labs-qtscriptgenerator-%{qtver} |
52 | cp %{S:1} src/3rdparty/qt-labs-qtscriptgenerator-%{qtver}/qt-labs-qtscriptgenerator-%{qtver}.pro |
53 | |
54 | %build |
55 | %qmake_qt5 |
56 | |
57 | %make_build |
58 | |
59 | %install |
60 | # remove project files |
61 | find . ( -name '*.pri' -or -name '*.pro' -or -name '*.ts' ) -delete |
62 | find . ( -name 'Makefile*' -or -name '.gitignore' ) -delete |
63 | |
64 | install -dm755 %{buildroot}%{_datadir}/%{name} |
65 | cp -r examples fonts libraries linetypes patterns plugins scripts ts %{buildroot}%{_datadir}/%{name} |
66 | cp release/* %{buildroot}%{_datadir}/%{name} |
67 | |
68 | # qt |
69 | for sofiles in %{_qt5_plugindir}/imageformats/*.so |
70 | do |
71 | ln -sf ${sofiles} %{buildroot}%{_datadir}/%{name}/plugins/imageformats/${sofiles##/*/} |
72 | done |
73 | |
74 | for sofiles in %{_qt5_plugindir}/sqldrivers/*.so |
75 | do |
76 | ln -sf ${sofiles} %{buildroot}%{_datadir}/%{name}/plugins/sqldrivers/${sofiles##/*/} |
77 | done |
78 | |
79 | for sofiles in %{_qt5_plugindir}/printsupport/*.so |
80 | do |
81 | ln -sf ${sofiles} %{buildroot}%{_datadir}/%{name}/plugins/printsupport/${sofiles##/*/} |
82 | done |
83 | |
84 | install -Dm644 scripts/%{name}_icon.png %{buildroot}%{_iconsdir}/%{name}_icon.png |
85 | install -Dm644 scripts/%{name}_icon.svg %{buildroot}%{_iconsdir}/hicolor/scalable/apps/%{name}_icon.svg |
86 | |
87 | install -dm0755 %{buildroot}%{_bindir} |
88 | echo -e '#!/bin/shncd %{_datadir}/%{name}nLD_LIBRARY_PATH=`pwd`:%{_libdir}/%{name}:$LD_LIBRARY_PATH exec ./%{name}-bin' > %{buildroot}%{_bindir}/%{name} |
89 | chmod 0755 %{buildroot}%{_bindir}/%{name} |
90 | |
91 | rm -f %{buildroot}%{_datadir}/%{name}/*.a |
92 | |
93 | install -dm0755 %{buildroot}%{_libdir}/%{name} |
94 | mv %{buildroot}%{_datadir}/%{name}/*.so %{buildroot}%{_libdir}/%{name} |
95 | |
96 | # man page |
97 | install -Dm644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 |
98 | |
99 | # documentation for help system |
100 | install -Dm644 readme.txt %{buildroot}%{_datadir}/%{name}/readme.txt |
101 | |
102 | # desktop |
103 | install -Dm644 %{name}.desktop %{buildroot}%{_datadir}/applications/%{name}.desktop |
104 | |
105 | %files |
106 | %doc readme.txt README.md |
107 | %license LICENSE.txt gpl-3.0.txt cc-by-3.0.txt gpl-3.0-exceptions.txt |
108 | %{_bindir}/%{name} |
109 | %dir %{_libdir}/%{name} |
110 | %{_libdir}/%{name}/*.so |
111 | %{_iconsdir}/*.png |
112 | %{_iconsdir}/hicolor/scalable/apps/*.svg |
113 | %{_datadir}/%{name}/ |
114 | %{_datadir}/applications/*.desktop |
115 | %{_mandir}/man1/%{name}.1.* |
Tap size: NF/NC UNF/UNC: Threads per inch: Basic major dia (inches) Basic effective dia (inches) Basic minor dia of ext. Threads (inches) Basic minor dia of int. Blogstomp 3 6 2. Threads (inches). QCAD version 3.1 has been released today! https://herebfil169.weebly.com/2pac-r-u-still-down-album-zip.html. QCAD 3.1 adds various improvements and new features to QCAD but probably the most important news today is that starting with QCAD version 3.1, QCAD is now available under the GPLv3 (open source software) as a free download to anyone. QCAD 3.1 is an easy to use, complete 2D CAD system for Windows, Mac OS.
Tap size: NF/NC UNF/UNC: Threads per inch: Basic major dia (inches) Basic effective dia (inches) Basic minor dia of ext. Threads (inches) Basic minor dia of int. Blogstomp 3 6 2. Threads (inches). QCAD version 3.1 has been released today! https://herebfil169.weebly.com/2pac-r-u-still-down-album-zip.html. QCAD 3.1 adds various improvements and new features to QCAD but probably the most important news today is that starting with QCAD version 3.1, QCAD is now available under the GPLv3 (open source software) as a free download to anyone. QCAD 3.1 is an easy to use, complete 2D CAD system for Windows, Mac OS.
3.16.7 (2017/03/21) Bug fixes: FS#1560 - Main menu not selectable (Ubuntu 16.04, Unity) FS#1561 - Edit Drawing Preferences: menu missing (macOS, French locale) 3.16.6 (2017/03/20) Edit Application / Drawing Preferences: Dimensions: Add preference to use comma instead of point as decimal separator; QCAD Professional: Command line tools: dwg2dwg. QCAD works on Windows, macOS and Linux. The source code of QCAD is released under the GPL version 3 (GPLv3), a popular Open Source license. The current version of QCAD is 3.25. QCAD was designed with modularity, extensibility and portability in mind. But what people notice most often about QCAD is its intuitive user interface. Learn the Quickstart method of using QCAD in the proper way. This 26-minute training video will get you started. If you are more s.
Overview
QCad is a Open Source software in the category Audio & Multimedia developed by Andrew Mustun.
Qcad 3 16 5 X 8
It was checked for updates 188 times by the users of our client application UpdateStar during the last month. https://torrent-filter.mystrikingly.com/blog/western-digital-external-hard-drive-for-mac-reviews.
The latest version of QCad is 3.25.2 , released on 09/08/2020. It was initially added to our database on 08/24/2007. The most prevalent version is 3.25.2 , which is used by 17 % of all installations. Vmware fusion pro for mac 11 5 1.
QCad runs on the following operating systems: Windows. The download file has a size of 34.7MB.
Qcad 3 16 5 Lug
QCad has not been rated by our users yet. Mac run adobe premiere.
Write a review for QCad!
10/22/2020 | SiSoftware Sandra Lite 2020.30.80.2020.11 |
10/22/2020 | Waterfox 2020.10 |
10/22/2020 | Dropbox 108.4.453 |
10/22/2020 | MediaPortal 2.3.2010.13341 |
10/22/2020 | NVIDIA FrameView SDK 1.1.4923.29214634 |
Qcad 3 16 5 X 4
10/20/2020 | New Firefox 82 available |
10/16/2020 | Thunderbird 78.3.3 is available |
10/16/2020 | Free UpdateStar Packs to setup your computer |
10/15/2020 | Firefox 81.0.2 available |
10/13/2020 | Adobe Flash Player update available |
- » qcad 2015 無料
- » qcad 3.4.6 key
- » scaricare qcad
- » qcad 3 руководство на русском
- » q cad 3.12 pluging
- » descargar qcad full movies 2012 free
- » linux qcad インストール
- » установка qcad-3.5.1
- » qcad magyar verzio
- » qcad для убунту русский скачать