mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-11 13:55:24 +01:00
Build grep-2.4.
This commit is contained in:
parent
996e6f7c10
commit
089b6d6020
5 changed files with 55 additions and 2 deletions
23
sysa/grep-2.4/grep-2.4.kaem
Normal file
23
sysa/grep-2.4/grep-2.4.kaem
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -ex
|
||||
|
||||
cd build
|
||||
|
||||
# Extract
|
||||
gunzip ../src/${pkg}.tar.gz
|
||||
tar xf ../src/${pkg}.tar
|
||||
cd ${pkg}
|
||||
cp ../../mk/main.mk Makefile
|
||||
|
||||
# Build
|
||||
make
|
||||
|
||||
# Install
|
||||
cp grep /after/bin/grep
|
||||
chmod 755 /after/bin/grep
|
||||
|
||||
# Test
|
||||
grep --version
|
||||
|
||||
cd ../..
|
||||
21
sysa/grep-2.4/mk/main.mk
Normal file
21
sysa/grep-2.4/mk/main.mk
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
PACKAGE=grep
|
||||
VERSION=2.4
|
||||
|
||||
CC = tcc
|
||||
LD = tcc
|
||||
AR = tcc -ar
|
||||
|
||||
CFLAGS = -DPACKAGE=\"$(PACKAGE)\" \
|
||||
-DVERSION=\"$(VERSION)\" \
|
||||
-DHAVE_DIRENT_H=1 \
|
||||
-DHAVE_UNISTD_H=1
|
||||
|
||||
.PHONY: all
|
||||
|
||||
GREP_SRC = grep dfa kwset obstack regex stpcpy savedir getopt getopt1 search grepmat
|
||||
GREP_OBJECTS = $(addprefix src/, $(addsuffix .o, $(GREP_SRC)))
|
||||
|
||||
all: grep
|
||||
|
||||
grep: $(GREP_OBJECTS)
|
||||
$(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@
|
||||
0
sysa/grep-2.4/src/.placeholder
Normal file
0
sysa/grep-2.4/src/.placeholder
Normal file
Loading…
Add table
Add a link
Reference in a new issue