repo/extra/gnupg1/build

15 lines
228 B
Plaintext
Raw Normal View History

2019-10-02 09:22:16 -06:00
#!/bin/sh -e
2020-02-11 17:19:41 -07:00
# Fix build fail with GCC 10.
export CFLAGS="$CFLAGS -fcommon"
2019-10-02 09:22:16 -06:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
2020-05-08 03:00:38 -06:00
--libexecdir=/usr/lib \
2020-04-18 23:43:02 -06:00
--enable-noexecstack \
--disable-nls
2019-10-02 09:22:16 -06:00
make
2021-07-17 20:21:33 -06:00
make install