v2 / vlib / v / pkgconfig / test_samples / hogweed.pc
19 lines · 16 sloc · 533 bytes · 6957f940a0d2c98e63fd96dd5ea26a95f66a3cb2
Raw
1prefix=/usr
2exec_prefix=${prefix}
3libdir=${exec_prefix}/lib
4includedir=${prefix}/include
5
6# Uses Requires.private and Libs.private, under the assumption that
7# when using shared libraries, the ELF dependencies from libhogweed.so
8# to nettle and gmp work.
9
10Name: Hogweed
11Description: Nettle low-level cryptographic library (public-key algorithms)
12URL: http://www.lysator.liu.se/~nisse/nettle
13Version: 3.8
14Requires: # nettle
15Requires.private: nettle
16Libs: -L${libdir} -lhogweed # -lgmp
17Libs.private: -lgmp
18Cflags: -I${includedir}
19
20