2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-09-30 21:40:58 -06:00
repo/extra/gnugrep/build

12 lines
157 B
Plaintext
Raw Permalink Normal View History

2021-06-30 08:49:45 -06:00
#!/bin/sh -e
export CFLAGS="$CFLAGS -Wno-error -static"
./configure \
--prefix=/usr
make
2023-03-02 07:40:00 -07:00
make DESTDIR="$1" install
2021-06-30 08:49:45 -06:00
2021-07-01 10:52:05 -06:00
cp -f src/grep "$1/usr/bin/ggrep"