]> git.armaanb.net Git - asd-repo.git/blobdiff - core/bzip2/build
Adapt for asd linux
[asd-repo.git] / core / bzip2 / build
diff --git a/core/bzip2/build b/core/bzip2/build
new file mode 100755 (executable)
index 0000000..ac1055b
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh -e
+
+make CC="${CC:-cc} $CFLAGS -fPIC $LDFLAGS" -f Makefile-libbz2_so
+make CC="${CC:-cc} $CFLAGS -fPIC $LDFLAGS" bzip2recover libbz2.a
+
+for bin in bzip2-shared bzdiff bzgrep bzip2recover bzmore; do
+    install -Dm755 "$bin" "$1/usr/bin/${bin%%-shared}"
+done
+
+install -Dm755 libbz2.so.1.0.8 "$1/usr/lib/libbz2.so.1.0.8"
+install -Dm644 libbz2.a        "$1/usr/lib/libbz2.a"
+install -Dm644 bzip2.1         "$1/usr/share/man/man1/bzip2.1"
+install -Dm644 bzlib.h         "$1/usr/include/bzlib.h"
+
+for lib in libbz2.so libbz2.so.1 libbz2.so.1.0; do
+    ln -sf libbz2.so.1.0.8 "$1/usr/lib/$lib"
+done
+
+ln -sf bzip2 "$1/usr/bin/bunzip2"
+ln -sf bzip2 "$1/usr/bin/bzcat"