diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2021-01-09 16:22:54 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2021-01-09 16:22:54 (GMT) |
commit | 55a5d2a08f0b168059571cddf8d6d963318903a1 (patch) | |
tree | a9aa5d3c7e708bdea6c774b9ed96e6871e149d5b /system/pkgconfig | |
parent | 2a429fde26212e8c8c9a5a44f9a4a06ee60a5208 (diff) |
Changed some installation paths and included a pkgconfig configuration.
Diffstat (limited to 'system/pkgconfig')
-rw-r--r-- | system/pkgconfig/Makefile.am | 5 | ||||
-rw-r--r-- | system/pkgconfig/chrysalide.pc.in | 12 |
2 files changed, 17 insertions, 0 deletions
diff --git a/system/pkgconfig/Makefile.am b/system/pkgconfig/Makefile.am new file mode 100644 index 0000000..73360a3 --- /dev/null +++ b/system/pkgconfig/Makefile.am @@ -0,0 +1,5 @@ + +pkgconfigdir = $(libdir)/pkgconfig + +pkgconfig_DATA = \ + chrysalide.pc diff --git a/system/pkgconfig/chrysalide.pc.in b/system/pkgconfig/chrysalide.pc.in new file mode 100644 index 0000000..f3a3af7 --- /dev/null +++ b/system/pkgconfig/chrysalide.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +includedir=@includedir@ +libdir=@libdir@ + +Name: Chrysalide +Description: Reverse Engineering Factory focused on embedded systems +Version: r@PACKAGE_VERSION@ +URL: https://www.chrysalide.re/ +Requires: glib-2.0 gtk+-3.0 libxml-2.0 +Cflags: -I${includedir}/chrysalide/core -I${includedir}/chrysalide +Libs: -L${libdir} -L${libdir}/chrysalide-plugins -lchrysacore |