From a427a0bcdb320b7fa93f72c9f73639f74f4a93e8 Mon Sep 17 00:00:00 2001 From: jihye Date: Wed, 8 May 2013 18:31:08 +0900 Subject: [PATCH] [Title] emulator-manager : add signing file in windows [Desc.] add signing file in windows [Issue] N/A Signed-off-by: jihye --- package/build.windows | 12 ++++++++++++ package/changelog | 4 ++++ package/pkginfo.manifest | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/package/build.windows b/package/build.windows index 3ad8fed..366fed6 100755 --- a/package/build.windows +++ b/package/build.windows @@ -32,6 +32,18 @@ build() ant -buildfile build.xml -Dclasspath.dibs=${PURIFIED_ROOTDIR}/tools/emulator/bin make-jar-dibs gcc $SRCDIR/supplement/emulator-manager.c -o $SRCDIR/emulator-manager.exe -mwindows + + if [ "$SIGNTOOL_PATH" != "" ] && [ -f "$SIGNTOOL_PATH" ] + then + if [ "$SIGNFILE_PATH" != "" ] && [ -f "$SIGNFILE_PATH" ] + then + "$SIGNTOOL_PATH" "sign" "//f" "$SIGNFILE_PATH" "//p" "sec2011" "//t" "http://timestamp.verisign.com/scripts/timestamp.dll" "$SRCDIR/emulator-manager.exe" + else + echo "signing file does not exist" + fi + else + echo "signtool does not exist" + fi } # install diff --git a/package/changelog b/package/changelog index be95050..9bf08d4 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,7 @@ +* 2.1.6 +- add sign file in the Windows +== jihye kim 2013-05-08 + * 2.1.5 - change checking emulator process routine (in Windows) == jihye kim 2013-04-22 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index 013dff6..0a7b54f 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,5 +1,5 @@ Source: emulator-manager -Version: 2.1.5 +Version: 2.1.6 Maintainer: Yeong-Kyoon Lee Package: emulator-manager -- 2.7.4