another fix for/against bad debian packages

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6329 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 15 years ago
parent fbd77bd77c
commit 70bda620db

@ -218,6 +218,13 @@
<classpath refid="project.class.path" />
<compilerarg value="-Xlint"/>
</javac>
<!-- make the jacycore jar -->
<jar destfile="${lib}/yacycore.jar" basedir="${build}/">
<manifest>
<attribute name="Main-Class" value="yacy"/>
</manifest>
</jar>
</target>
@ -241,7 +248,7 @@
<target name="all" depends="compile">
</target>
<target name="copyMain4Dist" depends="build-jar">
<target name="copyMain4Dist" depends="compile">
<!-- copy all libs -->
<copy todir="${release_main}/lib">
<fileset dir="${lib}"
@ -694,15 +701,6 @@
match="yacy \(.*\) unstable; urgency=low"
replace="yacy (*auto-svn-version*) unstable; urgency=low" />
</target>
<target name="build-jar" depends="compile-core">
<jar destfile="${lib}/yacycore.jar" basedir="${build}/">
<manifest>
<attribute name="Main-Class" value="yacy"/>
</manifest>
</jar>
</target>
<target name="sign" depends="readBuildProperties" description="sign current release file in RELEASE/ with $privateKey">
<java classname="de.anomic.tools.CryptoLib" failonerror="true">

2
debian/rules vendored

@ -19,7 +19,7 @@ build: build-stamp
build-stamp: configure-stamp
# build yacy
ant build-jar -DPKGMANAGER=true
ant compile -DPKGMANAGER=true
m4 -DDebian addon/yacyInit.m4 >debian/yacy.init
clean:

Loading…
Cancel
Save