aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/build-windows.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/build-windows.sh')
-rwxr-xr-xbuild-aux/build-windows.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/build-aux/build-windows.sh b/build-aux/build-windows.sh
index 3ed6b59..b00fbe6 100755
--- a/build-aux/build-windows.sh
+++ b/build-aux/build-windows.sh
@@ -2,17 +2,15 @@
set -ex
-PN="$(grep PACKAGE_TARNAME config.h | cut -d\" -f2)"
-PV="$(grep PACKAGE_VERSION config.h | cut -d\" -f2)"
-DEST_DIR="${PN}-${TARGET}-${PV}"
+DESTDIR="${PN}-${TARGET}-${PV}"
${MAKE_CMD:-make} blogc.exe
-rm -rf "${DEST_DIR}"
-mkdir -p "${DEST_DIR}"
+rm -rf "${DESTDIR}"
+mkdir -p "${DESTDIR}"
-cp .libs/blogc.exe "${DEST_DIR}/"
-cp ../LICENSE "${DEST_DIR}/"
-cp ../README.md "${DEST_DIR}/"
+cp .libs/blogc.exe "${DESTDIR}/"
+cp ../LICENSE "${DESTDIR}/"
+cp ../README.md "${DESTDIR}/"
-zip "${DEST_DIR}.zip" "${DEST_DIR}"/*
+zip "${DESTDIR}.zip" "${DESTDIR}"/*