klayout/scripts/rpm-data/klayout.spec

147 lines
3.5 KiB
Plaintext
Raw Normal View History

2017-09-10 17:05:27 +02:00
#
# spec file for package klayout
#
# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: klayout
Version: %{git_version}
2017-09-10 17:05:27 +02:00
Release: 0
Summary: KLayout, viewer and editor for mask layouts
License: GPL-2.0+
Group: Productivity/Scientific/Electronics
Url: http://www.klayout.de
%if "%{git_source}" == ""
2017-09-10 17:05:27 +02:00
Source0: http://www.klayout.de/downloads/%{name}-%{version}.tar.gz
%endif
# BuildRoot: %{_tmppath}/%{name}-%{version}-build
2017-09-10 17:05:27 +02:00
2017-09-10 20:35:23 +02:00
# Disable auto-detection of dependencies (to prevent including the
# so's of klayout itself)
AutoReqProv: no
# CentOS7 requirements
%if "%{target_system}" == "centos7"
Requires: ruby >= 2.0.0
Requires: python >= 2.7.5
Requires: qt >= 4.8.5
Requires: qt-x11 >= 4.8.5
%endif
%if "%{target_system}" == "centos6"
# CentOS6 requirements
# ...
%endif
%if "%{target_system}" == "opensuse42_2"
# OpenSuSE 42.2 requirements
# ...
%endif
%if "%{target_system}" == "opensuse42_3"
# OpenSuSE 42.3 requirements
# ...
%endif
2017-09-10 17:05:27 +02:00
%description
Mask layout viewer and editor for the chip design engineer.
For details see README.md
2017-09-10 17:05:27 +02:00
%prep
%if "%{git_source}" != ""
2017-09-12 23:14:12 +02:00
rm -rf %{_sourcedir}
ln -s %{git_source} %{_sourcedir}
%else
%setup -q
%endif
2017-09-10 17:05:27 +02:00
%build
TARGET="linux-release"
QMAKE=qmake
if which qmake-qt5; then
QMAKE=qmake-qt5
elif which qmake-qt4; then
QMAKE=qmake-qt4
elif which qmake; then
QMAKE=qmake
fi
PYTHON=python
if which python3; then
PYTHON=python3
elif which python2; then
PYTHON=python2
elif which python; then
PYTHON=python
fi
RUBY=ruby
if which ruby2; then
RUBY=ruby2
elif which ruby; then
RUBY=ruby
fi
# TODO: remove -without-qtbinding
2017-09-10 23:08:56 +02:00
%if "%{git_source}" != ""
# build from git sources if possible
cd %{git_source}
%else
cd %{_sourcedir}
2017-09-10 23:08:56 +02:00
%endif
./build.sh -rpath %{_libdir}/klayout \
-bin %{_builddir}/bin.$TARGET \
-build %{_builddir}/build.$TARGET \
2017-09-10 17:05:27 +02:00
-j4 \
-qmake $QMAKE \
-ruby $RUBY \
-python $PYTHON \
-without-qtbinding
2017-09-10 17:05:27 +02:00
2017-09-10 20:35:23 +02:00
cp -p LICENSE Changelog CONTRIB %{_builddir}
strip %{_builddir}/bin.$TARGET/*
2017-09-10 17:05:27 +02:00
%install
TARGET="linux-release"
mkdir -p %{buildroot}%{_libdir}/klayout
mkdir -p %{buildroot}%{_bindir}
2017-09-10 20:35:23 +02:00
cp -pd %{_builddir}/bin.$TARGET/lib*.so* %{buildroot}%{_libdir}/klayout
chmod 644 %{buildroot}%{_libdir}/klayout/*
cp -pd %{_builddir}/bin.$TARGET/klayout %{_builddir}/bin.$TARGET/strm* %{buildroot}%{_bindir}
chmod 755 %{buildroot}%{_bindir}/*
install -Dm644 %{_sourcedir}/etc/%{name}.desktop %{buildroot}%{_datadir}/applications/%{name}.desktop
2017-09-10 20:35:23 +02:00
install -Dm644 %{_sourcedir}/etc/logo.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
2017-09-10 17:05:27 +02:00
%if 0%{?suse_version}%{?sles_version}
%suse_update_desktop_file -n %{name}
%endif
%files
%defattr(-,root,root)
2017-09-10 20:35:23 +02:00
%doc LICENSE
%doc Changelog
%doc CONTRIB
2017-09-10 17:05:27 +02:00
%{_bindir}/klayout
%{_bindir}/strm*
%{_libdir}/klayout/*
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png
%changelog