base/{busybox,enchant,fftw,kmod,llvm,musl} Replaced CFLAGS and related CFLAGS with += operator for cleanliness Fixed mkdir commands in: base/{exiv2,fmt,glib,json-glib} Fixed file/recompile_magic.mgc.sh script by discarding /usr in base/file build file Tuned build options in base/flac Discarded unnecessary CPPFLAGS and printf command in base/flex Replaced CFLAGS with LDFLAGS in base/gawk Discarded /usr/bin/update-mime-database with own /etc/rc.d.rc.gtk liner in base/glib's doinst.sh file Discarded CXXFLAGS liner in base/glib Discarded mkdir liner in base/initfs Cause base/llvm build file to properly cd into the smbuild directory smoothly when attempting a rebuild in future Discarded unnecessary CFLAGS options in base/mksh Upgraded base/zstd to 1.5.2, rewrote its build options to use cmake build system
34 lines
665 B
Text
Executable file
34 lines
665 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"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
LDFLAGS="-static" \
|
|
./configure \
|
|
--prefix="" \
|
|
--bindir=/bin
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
6de73a5e36340293572d3ac2ea4f262c95e89cf343e148df412623c97ddbb66ad5a2e081fde79ba2a94744659c4eef05d734eed8e22b351aad9661a794bab265 grep-3.6.tar.lz
|
|
"
|