blob: 6446418fc095dc83465415ec7094c4f2ca65502a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env -S bash ../.port_include.sh
port=grep
version=3.7
files="https://ftpmirror.gnu.org/gnu/grep/grep-${version}.tar.gz grep-${version}.tar.gz
https://ftpmirror.gnu.org/gnu/grep/grep-${version}.tar.gz.sig grep-${version}.tar.gz.sig
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
useconfigure=true
configopts=("--disable-perl-regexp")
auth_type="sig"
auth_opts=("--keyring" "./gnu-keyring.gpg" "grep-${version}.tar.gz.sig")
|