pinentry (326B)
1 cat <<EOF> .build.cpt 2 #!/bin/sh -e 3 4 ./configure \ 5 --prefix=/usr \ 6 --enable-fallback-curses \ 7 --enable-pinentry-emacs \ 8 --disable-libsecret \ 9 --disable-pinentry-gtk2 \ 10 --without-libcap \ 11 --disable-rpath \ 12 --enable-pinentry-tty \ 13 --enable-pinentry-curses 14 15 make 16 make DESTDIR="\$1" install 17 EOF