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