fritzing/fritzing.spec
Thomas Zimmermann d2c33cd5b1 Accepting request 79363 from home:Heinervdm:branches:Education
Update to upstream version 0.6.3b
The patches are no langer needed as similar patches went upstream

OBS-URL: https://build.opensuse.org/request/show/79363
OBS-URL: https://build.opensuse.org/package/show/Education/fritzing?expand=0&rev=6
2011-08-19 18:31:53 +00:00

86 lines
2.6 KiB
RPMSpec

#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define vers 0.6.3
%define snap 2011.08.18
Name: fritzing
Version: 0.6.3b
Release: 0
License: GPLv3+
Summary: Intuitive EDA platform featuring from prototype to product
Url: http://fritzing.org/
Group: Applications/Engineering
Source0: http://fritzing.org/download/%{version}/source-tarball/%{name}.%{vers}.source.tar.bz2
Source1: fritzing.desktop
Source2: fritzing.1
Requires: libqt4-sql-sqlite libqt4-x11
BuildRequires: desktop-file-utils
BuildRequires: libqt4-devel
%if 0%{?centos_version} || 0%{?rhel_version}
BuildRequires: qt4-devel gcc-c++
%endif
%if 0%{?fedora}
BuildRequires: qt gcc-c++ libstdc++-devel
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Fritzing is an open-source initiative to support designers, artists,
researchers and hobbyists to take the step from physical prototyping
to actual product. It is in the spirit of Processing and Arduino which
allows users to document their Arduino and other electronic-based
prototypes, and to create a PCB layout for manufacturing.
%prep
%setup -q -n %{name}.%{snap}.source
sed -i 's/\r//' README.txt
%build
%if 0%{?mandriva_version} || 0%{?centos_version}
export PATH=/usr/lib/qt4/bin:/usr/lib64/qt4/bin:$PATH
export QTDIR=%{_prefix}/lib/qt4/
%endif
%if 0%{?fedora} || 0%{?rhel_version}
qmake-qt4
%else
qmake
%endif
make %{?_smp_mflags}
%install
%if 0%{?mandriva_version} || 0%{?sles_version}
%{__make} install
%else
%make_install
%endif
install -D -m 0755 Fritzing %{buildroot}%{_bindir}/fritzing
install -d %{buildroot}%{_datadir}/%{name}
cp -pr sketches %{buildroot}%{_datadir}/%{name}
cp -pr parts %{buildroot}%{_datadir}/%{name}
cp -pr bins %{buildroot}%{_datadir}/%{name}
cp -pr translations %{buildroot}%{_datadir}/%{name}
rm %{buildroot}%{_datadir}/%{name}/translations/*.ts
find %{buildroot}%{_datadir}/%{name}/translations -name "*.qm" -size -128c -delete
find %{buildroot}%{_datadir}/%{name} -type f -exec chmod 644 {} \;
find %{buildroot}%{_datadir}/%{name} -type d -exec chmod 755 {} \;
install -D -m 0644 resources/images/fritzing_icon.png %{buildroot}%{_datadir}/pixmaps/fritzing.png
install -D -m 0644 %{SOURCE2} %{buildroot}%{_mandir}/man1/fritzing.1
desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{SOURCE1}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.txt LICENSE.GPL2 LICENSE.GPL3 LICENSE.CC-BY-SA
%{_bindir}/%{name}
%{_datadir}/%{name}/
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png
%{_mandir}/man1/%{name}.*
%changelog