-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Surelog into the langutils recipe
- Loading branch information
1 parent
b598137
commit 2f6d87a
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
FROM ubuntu:latest AS build | ||
|
||
WORKDIR /root | ||
|
||
RUN apt update -qq \ | ||
&& DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \ | ||
# Common | ||
build-essential \ | ||
ca-certificates \ | ||
git \ | ||
python3 \ | ||
zlib1g-dev \ | ||
# Surelog | ||
cmake \ | ||
default-jre \ | ||
python3-orderedmultidict \ | ||
&& apt autoclean && apt clean && apt -y autoremove \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# | ||
# Surelog | ||
# | ||
|
||
RUN git clone --depth 1 https://github.com/alainmarcel/Surelog.git \ | ||
&& cd Surelog && git submodule update --init --recursive \ | ||
&& make -j$(nproc) && make install | ||
|
||
############################################################################### | ||
|
||
## Surelog | ||
#/usr/local/lib/libcapnp.a | ||
#/usr/local/lib/libkj.a | ||
#/usr/local/lib/libuhdm.a | ||
#/usr/local/bin/uhdm-cmp | ||
#/usr/local/bin/uhdm-dump | ||
#/usr/local/bin/uhdm-hier | ||
#/usr/local/bin/uhdm-lint | ||
#/usr/local/include/uhdm | ||
#/usr/local/share/uhdm/UHDM.capnp | ||
#/usr/local/lib/cmake/UHDM | ||
#/usr/local/lib/pkgconfig/UHDM.pc | ||
#/usr/local/bin/surelog | ||
#/usr/local/bin/roundtrip | ||
#/usr/local/lib/libsurelog.a | ||
#/usr/local/lib/libantlr4-runtime.a | ||
#/usr/local/lib/libcapnp.a | ||
#/usr/local/lib/libkj.a | ||
#/usr/local/lib/libuhdm.a | ||
#/usr/local/share/surelog | ||
#/usr/local/include/Surelog | ||
#/usr/local/lib/cmake/Surelog | ||
#/usr/local/lib/pkgconfig/Surelog.pc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
bash ../run.sh langutils 'surelog --version' |