]> git.pld-linux.org Git - packages/qt-creator.git/blame - qt-creator.spec
- added desktop file
[packages/qt-creator.git] / qt-creator.spec
CommitLineData
2aefa737 1Summary: An IDE tailored to the needs of Qt developers
2Summary(pl.UTF-8): IDE dostosowane do potrzeb developerow Qt
3Name: qt-creator
08788771 4Version: 1.3.0
94fce250 5Release: 1
2aefa737 6Epoch: 1
7License: LGPL v2.1
0bdd3f4c 8Group: X11/Development/Tools
2aefa737 9Source0: http://download.qtsoftware.com/qtcreator/%{name}-%{version}-src.zip
08788771 10# Source0-md5: c4c0450099a76099917687f3f05604d9
0bdd3f4c 11Source1: %{name}.desktop
2b26ffea 12Patch0: %{name}-pluginpath64.patch
2aefa737 13URL: http://www.qtsoftware.com/developer/qt-creator
a2bb26e4 14BuildRequires: QtDBus-devel
99bec638 15BuildRequires: QtDesigner-devel
2aefa737 16BuildRequires: QtGui-devel
a2bb26e4
KK
17BuildRequires: QtHelp-devel
18BuildRequires: QtNetwork-devel
19BuildRequires: QtScript-devel
5eafeef8 20BuildRequires: QtSql-sqlite3
a2bb26e4
KK
21BuildRequires: QtSvg-devel
22BuildRequires: QtWebKit-devel
23BuildRequires: QtXml-devel
08788771 24BuildRequires: qt4-build >= 4.6.0
4208b10d 25BuildRequires: qt4-linguist
08788771 26BuildRequires: qt4-qmake >= 4.6.0
a2bb26e4 27BuildRequires: unzip
0bdd3f4c 28Requires(post,postun): desktop-file-utils
4208b10d 29%requires_eq QtCore
0bdd3f4c
MB
30# for xdg-open
31Suggests: xdg-utils
2aefa737 32BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34%description
35Qt Creator is a cross-platform integrated development environment (IDE)
36tailored to the needs of Qt developers.
37
38%description -l pl.UTF-8
39Qt Creator to wieloplatformowe IDE dostosowane do potrzeb developerow Qt.
40
41%prep
08788771 42%setup -q
2aefa737 43
2b26ffea 44%if "%{_lib}" == "lib64"
45%patch0 -p1
46%endif
47
2aefa737 48%build
49export QTDIR=%{_libdir}/qt4
50# the qmakespec in qt4 is somewhat broken, need to look at this
51#export QMAKESPEC=%{_datadir}/qt4/mkspecs/linux-g++/
52
53qmake-qt4 qtcreator.pro \
54 QMAKE_CXX="%{__cxx}" \
55 QMAKE_LINK="%{__cxx}" \
56 QMAKE_CXXFLAGS_RELEASE="%{rpmcflags}" \
57 QMAKE_RPATH=
58
59%{__make}
60
61%install
62rm -rf $RPM_BUILD_ROOT
0bdd3f4c 63install -d $RPM_BUILD_ROOT%{_desktopdir}
2aefa737 64
65export QTDIR=%{_libdir}/qt4
2aefa737 66%{__make} install \
08788771 67 INSTALL_ROOT=$RPM_BUILD_ROOT%{_prefix}
2aefa737 68
5eafeef8 69%if "%{_lib}" == "lib64"
08788771 70mv -f $RPM_BUILD_ROOT{%{_prefix}/lib,%{_libdir}}
5eafeef8 71%endif
2aefa737 72
08788771 73mv -f $RPM_BUILD_ROOT%{_bindir}/{qtcreator.bin,qtcreator}
4208b10d 74
08788771
KK
75install -d $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d
76echo "%{_libdir}/qtcreator" > $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d/qtcreator.conf
2b26ffea 77
0bdd3f4c
MB
78install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}/%{name}.desktop
79
2aefa737 80%clean
81rm -rf $RPM_BUILD_ROOT
82
0bdd3f4c
MB
83%post
84/sbin/ldconfig
85%update_desktop_database
86
87%postun
88/sbin/ldconfig
89%update_desktop_database_postun
90
2aefa737 91%files
92%defattr(644,root,root,755)
4208b10d
KK
93%attr(755,root,root) %{_bindir}/qtcreator
94%attr(755,root,root) %{_bindir}/qtcreator_process_stub
2b26ffea 95%{_sysconfdir}/ld.so.conf.d/qtcreator.conf
2aefa737 96%dir %{_libdir}/qtcreator
2b26ffea 97%attr(755,root,root) %{_libdir}/qtcreator/lib*.so.*.*
98%attr(755,root,root) %{_libdir}/qtcreator/lib*.so
5eafeef8 99%attr(755,root,root) %ghost %{_libdir}/qtcreator/lib*.so.1
2aefa737 100%dir %{_libdir}/qtcreator/plugins
101%dir %{_libdir}/qtcreator/plugins/Nokia
a2bb26e4 102%{_libdir}/qtcreator/plugins/Nokia/*.pluginspec
2aefa737 103%attr(755,root,root) %{_libdir}/qtcreator/plugins/Nokia/*.so
104%{_datadir}/qtcreator
2b26ffea 105%{_defaultdocdir}/qtcreator
0bdd3f4c 106%{_desktopdir}/qt-creator.desktop
2aefa737 107%{_pixmapsdir}/qtcreator_logo*.png
This page took 0.079086 seconds and 4 git commands to generate.