2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-09 06:20:16 -07:00
repo/extra/gnugrep/build

12 lines
166 B
Plaintext
Raw Normal View History

2021-06-30 08:49:45 -06:00
#!/bin/sh -e
export CFLAGS="$CFLAGS -Wno-error -static"
./configure \
--prefix=/usr
make
make DESTDIR="$1" install
install -Dm755 src/grep "$1/usr/bin/ggrep"