smlinux/base/grep/grep.SMBuild
PktSurf 761d688cd9 Converted most source tarballs in base to lzip format ending with .tar.lz, updated SHA512 sums in affected build files
Removed --sysconfdir option in a lot of build files in base
Added preservestaticlibs option in base/argp-standalone
Fixed CFLAGS variable in base/{file,grep}
Fixed build options in base/gstreamer
Fixed LDFLAGS variable in base/less
Removed CFLAGS variable in base/libarchive
Multiple build option fixes in base/nasm
2022-10-04 19:59:37 +05:30

32 lines
653 B
Text
Executable file

app=grep
version=3.6
build=1sml
homepage="https://www.gnu.org/software/grep/"
download="https://ftp.gnu.org/gnu/grep/grep-$version.tar.xz"
desc="print lines matching a pattern"
requires="pcre"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
CFLAGS="$CFLAGS -static" \
./configure \
--prefix="" \
--bindir=/bin
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
6de73a5e36340293572d3ac2ea4f262c95e89cf343e148df412623c97ddbb66ad5a2e081fde79ba2a94744659c4eef05d734eed8e22b351aad9661a794bab265 grep-3.6.tar.lz
"