nolith / PortableNotary (http://abisso.org/projects/portablenotary/)
PortableNotary permits you to verify pdf signature. It's OS independent and can be used from command line.
| commit 10: | 21f1c36b2830 |
| parent 9: | 4581103ec2ba |
| branch: | trunk |
[svn] Now should build generic, win and mac application fron any system....maybe... :D
- View nolith's profile
-
nolith's public repos »
- yubiruby
- hgredmine
- dns_gen
- hgredmine-patch
- evetrader
- ipv6 - fine del mondo
- geany-stata
- scintilla-STATA
- habtm-with-deferred-save
- redirector
- avahiserve
- test
- macports
- darkcast
- redmine-bitbucket
- redmine-hg
- redmine-mq-issue4455
- About Me
- about-me-dev
- ldap
- intro_ipv6
- home_dir
- PortableNotary
- CaptureMJPEG
- ruby-beamer
- eveberry-bis
- Send message
3 years ago
Changed (Δ63.2 KB):
raw changeset »
ant/JavaApplicationStub (binary file changed)
ant/one-jar-ant-task.xml
build.xml (14 lines added, 10 lines removed)
Up to file-list ant/JavaApplicationStub:
- |
Diff size exceeds threshold (63.0 KB) — view raw? |
122 |
122 |
|
123 |
123 |
|
124 |
124 |
|
125 |
|
|
125 |
<!-- <target name="jar" depends="build"> |
|
126 |
126 |
<jar jarfile="${out.jar}"> |
127 |
127 |
<fileset dir="${build}"/> |
128 |
128 |
<manifest> |
131 |
131 |
<attribute name="Class-Path" value=". ${itext} ${bcprov} ${commons-cli}"/> |
132 |
132 |
</manifest> |
133 |
133 |
</jar> |
134 |
</target> |
|
134 |
</target> --> |
|
135 |
135 |
|
136 |
136 |
|
137 |
137 |
<target name="deploy-generic" depends="build"> |
147 |
147 |
</fatjar.build> |
148 |
148 |
</target> |
149 |
149 |
|
150 |
<target name="deploy-osx" depends=" |
|
150 |
<target name="deploy-osx" depends="deploy-generic"> |
|
151 |
151 |
<jarbundler dir="release" |
152 |
152 |
name="PortableNotary" |
153 |
153 |
mainclass="${main.class}" |
154 |
154 |
bundleid="org.abisso.PortableNotary" |
155 |
155 |
icon="./images/Icon.icns" |
156 |
jvmversion="1.6+" version="0.1" |
|
157 |
workingdirectory="$APP_PACKAGE/Contents/Resources" > |
|
158 |
|
|
156 |
jvmversion="1.5+" version="0.1" |
|
157 |
workingdirectory="$APP_PACKAGE/Contents/Resources" |
|
158 |
stubfile="./ant/JavaApplicationStub"> |
|
159 |
<jarfileset dir="${release}" includes="*.jar" /> |
|
160 |
<jarfileset dir="." includes="libs/*.jar"/> |
|
159 |
161 |
<javaproperty name="apple.laf.useScreenMenuBar" value="true"/> |
160 |
< |
|
162 |
<!--<resourcefileset dir="." includes="images/**"> |
|
161 |
163 |
<exclude name="**/*.svg"/> |
162 |
164 |
<exclude name="**/*.icns"/> |
163 |
</resourcefileset> |
|
165 |
</resourcefileset> --> |
|
164 |
166 |
</jarbundler> |
165 |
167 |
</target> |
166 |
168 |
|
167 |
169 |
<target name="deploy-win" depends="deploy-generic"> |
168 |
<launch4j configFile="./ant/launch4j.xml" |
|
170 |
<launch4j configFile="./ant/launch4j.xml" |
|
171 |
jarPath="../${out.fatjar}" |
|
172 |
outfile="../${release}/PortableNotary.exe" /> |
|
169 |
173 |
</target> |
170 |
174 |
|
171 |
<target name="deploy" depends="deploy- |
|
175 |
<target name="deploy" depends="deploy-generic, deploy-osx, deploy-win" /> |
|
172 |
176 |
|
173 |
177 |
</project> |
174 |
178 |
