чување 2ff86f65e8093f99c275e3657c916e581abf7349
родитељ 162db98508425449afe6098ca5cf46c5bf0babe5
Аутор: Страхиња Радић <contact@strahinja.org>
Датум: Fri, 29 Sep 2023 21:15:15 +0200
Change build scripts to make .gz optional; OpenBSD build and instructions
Signed-off-by: Страхиња Радић <contact@strahinja.org>
Diffstat:
измењених датотека: 6, додавања: 53(+), брисања: 17(-)
diff --git a/INSTALL b/INSTALL
@@ -2,13 +2,13 @@ Prerequisites
=============
* C compiler - defaults in config.redo
-* gzip
Optional dependencies
---------------------
* git (for {git-log})
+* gzip (autodetected, for manpage compression)
Install
@@ -33,3 +33,17 @@ Persistent build configuration file
The file config.redo will be sourced when building targets which also accept
configuration through environment variables. For example, CC and PREFIX
are specified in config.redo.
+
+
+OpenBSD
+-------
+
+Replace gcc in CC with cc and add -D_BSD_SOURCE, eg:
+
+ # CC='cc -g -Wall -pedantic -std=c99 -D_POSIX_C_SOURCE=200809L
+ -D_XOPEN_SOURCE=700 -D_BSD_SOURCE}' \
+ ./do install
+
+and change MANDIR to
+
+ MANDIR=$PREFIX/man/man1
diff --git a/all.do b/all.do
@@ -1 +1,2 @@
-redo-ifchange version.h slw2gmi slw2gmi.1.gz
+. ./config.redo
+redo-ifchange slw2gmi slw2gmi.1"$MANSUFFIX"
diff --git a/clean.do b/clean.do
@@ -1,2 +1,2 @@
-redo-always
-rm -f slw2gmi slw2gmi.1 slw2gmi.1.gz *.o *~ version.h version date *.pdf
+. ./config.redo
+rm -f *.o *~ slw2gmi $MANPAGES *.1 version.h version date *.pdf
diff --git a/config.redo b/config.redo
@@ -1,4 +1,21 @@
PREFIX=${PREFIX:-/usr/local}
+
+BINDIR=$PREFIX/bin
+DOCDIR=$PREFIX/share/doc/slw2gmi
+MANDIR=$PREFIX/share/man/man1
+
+# OpenBSD
+#MANDIR=$PREFIX/man/man1
+
+PROGS="slw2gmi"
+DOCS="README LICENSE"
+MANSUFFIX=${MANSUFFIX-$(command -v gzip >/dev/null && printf ".gz")}
+MANPAGES="slw2gmi.1${MANSUFFIX}"
+
CC=${CC:-gcc -g -Wall -pedantic -std=c99 -D_POSIX_C_SOURCE=200809L \
-D_XOPEN_SOURCE=700}
STRIP=${STRIP:-:}
+
+# OpenBSD
+#CC=${CC:-cc -g -Wall -pedantic -std=c99 -D_POSIX_C_SOURCE=200809L \
+#-D_XOPEN_SOURCE=700 -D_BSD_SOURCE}
diff --git a/install.do b/install.do
@@ -1,13 +1,12 @@
redo-ifchange all
. ./config.redo
-BINDIR=$PREFIX/bin
-DOCDIR=$PREFIX/share/doc/slw2gmi
-MANDIR=$PREFIX/share/man/man1
-install -d $DOCDIR
-for docfile in README; do
+install -d "$DOCDIR" "$BINDIR" "$MANDIR"
+for docfile in $DOCS; do
install -Dm 0644 "${docfile}" "${DOCDIR}/${docfile}"
done
-install -d $BINDIR $MANDIR
-install -m 0755 slw2gmi $BINDIR
-#install -m 0644 slw2gmi.pdf $DOCDIR
-install -m 0644 slw2gmi.1.gz $MANDIR
+for binfile in $PROGS; do
+ install -Dm 0755 "${binfile}" "${BINDIR}/${binfile}"
+done
+for manfile in $MANPAGES; do
+ install -Dm 0644 "${manfile}" "${MANDIR}/${manfile}"
+done
diff --git a/uninstall.do b/uninstall.do
@@ -1,6 +1,11 @@
redo-always
. ./config.redo
-BINDIR=$PREFIX/bin
-DOCDIR=$PREFIX/share/doc/slw2gmi
-MANDIR=$PREFIX/share/man/man1
-rm -f $BINDIR/slw2gmi $MANDIR/slw2gmi.1.gz $(find $DOCDIR -type f)
+for docfile in $DOCS; do
+ rm -f "${DOCDIR}/${docfile}"
+done
+for binfile in $PROGS; do
+ rm -f "${BINDIR}/${binfile}"
+done
+for manfile in $MANPAGES; do
+ rm -f "${MANDIR}/${manfile}"
+done