| 1 | prefix=/usr |
| 2 | exec_prefix=${prefix} |
| 3 | libdir=${exec_prefix}/lib |
| 4 | includedir=${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 | |
| 10 | Name: Hogweed |
| 11 | Description: Nettle low-level cryptographic library (public-key algorithms) |
| 12 | URL: http://www.lysator.liu.se/~nisse/nettle |
| 13 | Version: 3.8 |
| 14 | Requires: # nettle |
| 15 | Requires.private: nettle |
| 16 | Libs: -L${libdir} -lhogweed # -lgmp |
| 17 | Libs.private: -lgmp |
| 18 | Cflags: -I${includedir} |
| 19 | |
| 20 | |