Skip to content
Snippets Groups Projects
Unverified Commit 88a72642 authored by Ralph Giles's avatar Ralph Giles
Browse files

mingw: Query git for dist version.

We build from a git repo, so we can call `git describe` to
generate a version number. When building from a tag, this
should give us a clean release-versioned filename.
parent c7589134
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,8 @@ ssl_BUILD: $(ssl_DIR)
# CROSS_COMPILE="i686-w64-mingw32-" ./Configure mingw no-asm no-shared --prefix=$PWD/mingw && make depend && make -j8 && make install
# Package the binaries.
DIST := opusfile-0.8-f25docker-win32
DIST_VERSION := $(shell git describe --dirty)
DIST := opusfile-$(DIST_VERSION)-f25docker-win32
package: $(DIST).zip
$(DIST).zip: $(DIST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment