Skip to content

Commit a15c85b

Browse files
authored
Ubuntu 20.04: Add quazip pkg-config file (#5)
The current stable Ubuntu/Debian package for quazip does not yet include a pkg-config file (because upstream only added that recently). Therefore we simply add the file to the container ourselves.
1 parent b03037f commit a15c85b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

ubuntu-20.04/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,8 @@ RUN pip install \
5050
"future==0.17.1" \
5151
"flake8==3.7.7"
5252

53+
# Add missing pkg-config files
54+
ADD quazip.pc /usr/lib/pkgconfig/
55+
5356
# LibrePCB's unittests expect that there is a USERNAME environment variable
5457
ENV USERNAME="root"

ubuntu-20.04/quazip.pc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
prefix=/usr
2+
exec_prefix=${prefix}
3+
libdir=${prefix}/lib/x86_64-linux-gnu/
4+
includedir=${prefix}/include
5+
6+
Name: Quazip
7+
Description: Quazip Library
8+
Version:
9+
Libs: -lquazip5
10+
Cflags:
11+
Requires: Qt5Core

0 commit comments

Comments
 (0)