comparison src/win7appid.mk @ 4174:2b631cf1c210

win7appid: new package * src/win7appid.mk: new file * index.html: add ref to win7appid * dist-files.mk: add win7appid.mk * binary-dist-rules.mk: add win7appid to windows dist deps.
author John Donoghue <john.donoghue@ieee.org>
date Mon, 18 Jul 2016 18:49:35 -0400
parents
children
comparison
equal deleted inserted replaced
4173:1d86cb0348ff 4174:2b631cf1c210
1 # This file is part of MXE.
2 # See index.html for further information.
3
4 PKG := win7appid
5 $(PKG)_VERSION := 1.1
6 $(PKG)_CHECKSUM := d726a5832d7a3f49bd7912ca08c70aad96eb95b4
7 $(PKG)_SUBDIR := $(PKG)
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).zip
9 $(PKG)_URL := https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/win7appid/source-archive.zip
10 $(PKG)_DEPS :=
11
12 define $(PKG)_UPDATE
13 echo $($(PKG)_VERSION)
14 endef
15
16 define $(PKG)_BUILD
17 cd '$(1)/trunk/' && \
18 $(MXE_CXX) Win7AppId.cpp -municode -DWIN32_LEAN_AND_MEAN=1 -DUNICODE -D_UNICODE -lole32 -o win7appid.exe
19 mkdir -p '$(3)$(HOST_BINDIR)'
20 $(INSTALL) '$(1)/trunk/win7appid.exe' '$(3)$(HOST_BINDIR)/'
21 endef