Skip to content

Commit

Permalink
debian-bookworm: add klayout
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jun 26, 2023
1 parent 18ff60f commit 938d53e
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 1 deletion.
83 changes: 83 additions & 0 deletions debian-bookworm/klayout.dockerfile
@@ -0,0 +1,83 @@
# Authors:
# Unai Martinez-Corral
# <umartinezcorral@antmicro.com>
# <unai.martinezcorral@ehu.eus>
#
# Copyright Unai Martinez-Corral
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0

ARG REGISTRY='gcr.io/hdl-containers/debian/bookworm'

#--

FROM $REGISTRY/build/build AS build

RUN apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
libqt5svg5-dev \
libqt5xmlpatterns5-dev \
python3-dev \
qt5-qmake \
qtmultimedia5-dev \
qttools5-dev \
ruby-dev \
&& apt-get autoclean && apt-get clean && apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/KLayout/klayout.git /tmp/klayout \
&& mkdir -p /opt/klayout/usr/local/bin \
&& cd /tmp/klayout \
&& ./build.sh \
-qmake 'qmake -spec linux-clang' \
-bin /opt/klayout/usr/local/bin \
-rpath /usr/local/lib \
-ruby /usr/bin/ruby \
-python /usr/bin/python3 \
-option -j$(nproc) \
&& mkdir -p /opt/klayout/usr/local/lib \
&& cd /opt/klayout/usr/local/bin \
&& mv libklayout* db_plugins lay_plugins ../lib/

#---

FROM scratch AS pkg
COPY --from=build /opt/klayout /klayout

#---

FROM $REGISTRY/build/base

RUN apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
libpulse-mainloop-glib0 \
libpython3.11 \
libqt5core5a \
libqt5designer5 \
libqt5gui5 \
libqt5multimedia5 \
libqt5multimediawidgets5 \
libqt5printsupport5 \
libqt5sql5 \
libqt5svg5 \
libqt5widgets5 \
libqt5xml5 \
libqt5xmlpatterns5 \
libruby \
&& apt-get autoclean && apt-get clean && apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*

COPY --from=build /opt/klayout /
CMD ["klayout"]
2 changes: 1 addition & 1 deletion utils/pyHDLC/config.yml
Expand Up @@ -151,7 +151,7 @@ jobs:
icestorm: *SysDebianDefaultArchSet
irsim: *SysDebianDefaultArchSet
iverilog: *SysDebianAmd64
klayout: *SysDebianBullseyeAmd64
klayout: *SysDebianAmd64
magic: *SysDebianDefaultArchSet
netgen: *SysDebianDefaultArchSet
nvc:
Expand Down

0 comments on commit 938d53e

Please sign in to comment.