annotate src/win7appid.mk @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
parents 2b631cf1c210
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4174
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := win7appid
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_VERSION := 1.1
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 $(PKG)_CHECKSUM := d726a5832d7a3f49bd7912ca08c70aad96eb95b4
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(PKG)_SUBDIR := $(PKG)
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).zip
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_URL := https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/win7appid/source-archive.zip
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_DEPS :=
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 echo $($(PKG)_VERSION)
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 endef
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 define $(PKG)_BUILD
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 cd '$(1)/trunk/' && \
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 $(MXE_CXX) Win7AppId.cpp -municode -DWIN32_LEAN_AND_MEAN=1 -DUNICODE -D_UNICODE -lole32 -o win7appid.exe
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 mkdir -p '$(3)$(HOST_BINDIR)'
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 $(INSTALL) '$(1)/trunk/win7appid.exe' '$(3)$(HOST_BINDIR)/'
2b631cf1c210 win7appid: new package
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 endef