mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
30 lines
707 B
Diff
30 lines
707 B
Diff
From e2262ff74799f6bd9d8df984090456b85b9236f5 Mon Sep 17 00:00:00 2001
|
|
From: Henry-Nicolas Tourneur <debian@nilux.be>
|
|
Date: Sun, 24 May 2020 20:37:33 +0000
|
|
Subject: [PATCH 2/5] added pkgconfig suport
|
|
|
|
---
|
|
src/libaxc.pc | 11 +++++++++++
|
|
1 file changed, 11 insertions(+)
|
|
create mode 100644 src/libaxc.pc
|
|
|
|
diff --git a/src/libaxc.pc b/src/libaxc.pc
|
|
new file mode 100644
|
|
index 0000000..2c67ed6
|
|
--- /dev/null
|
|
+++ b/src/libaxc.pc
|
|
@@ -0,0 +1,11 @@
|
|
+prefix=/usr
|
|
+includedir=${prefix}/include
|
|
+libdir=${prefix}/lib/${ARCH}
|
|
+
|
|
+Name: libaxc
|
|
+Version: ${version}
|
|
+Description: client library for libsignal-protocol-c
|
|
+Requires.private: glib-2.0
|
|
+Cflags: -I${includedir}/axc
|
|
+Libs: -L${libdir} -llibaxc
|
|
+
|
|
--
|
|
2.28.0
|
|
|