Update SigScript

Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com>
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
sigonasr2 2022-06-13 02:02:33 -05:00
parent 4dd37e25b2
commit f1029c11fd
8 changed files with 36 additions and 15 deletions

View File

@ -1,7 +1,7 @@
#Builds and runs the project. #Builds and runs the project for Windows.
#Java #Java
source ${LANGUAGE}/scripts/version_info source ${LANGUAGE}/scripts/version_info
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH2} -d ${OUT_DIR} ${PROJECT_DIR}/*.java javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH_WINDOWS} -d ${OUT_DIR} ${PROJECT_DIR}/*.java
printf "\n\n\nRunning Program...\n\n" printf "\n\n\nRunning Program...\n\n"
ORIGINAL_LOC=$(pwd) ORIGINAL_LOC=$(pwd)
cd $OUT_DIR cd $OUT_DIR

View File

@ -1,6 +1,8 @@
build2.sh
build.sh build.sh
clean.sh clean.sh
commit.sh commit.sh
jar2.sh
jar.sh jar.sh
release.sh release.sh
update.sh update.sh

View File

@ -13,5 +13,5 @@ jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig
jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ . jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ .
printf "\n\n\nRunning Program...\n\n" printf "\n\n\nRunning Program...\n\n"
java ${CUSTOM_PARAMS} -cp .:../lib/bin -Djava.library.path="${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@" java ${CUSTOM_PARAMS} -cp .:../lib/bin -Djava.library.path="${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@"
./${LANGUAGE}/scripts/clean.sh ${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh
cd .. cd ..

17
Java/scripts/jar2.sh Normal file
View File

@ -0,0 +1,17 @@
#Builds a runnable jar file using ${MAIN_CLASS} as an entry point and then runs the newly generated jar for Windows.
#Java
source ${LANGUAGE}/scripts/version_info
rm -Rf bin/*
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH_WINDOWS} -d ${OUT_DIR} ${PROJECT_DIR}/${PROJECT_NAME}.java
printf "\n\n\nGenerating Manifest...\n\n"
touch manifest
echo "Main-Class: ${MAIN_CLASS}" > manifest
printf "\n\n\nCreating Jar...\n\n"
ORIGINAL_LOC=$(pwd)
cd ${OUT_DIR}
jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig
jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ .
printf "\n\n\nRunning Program...\n\n"
java ${CUSTOM_PARAMS} -cp .;../lib/bin "-Djava.library.path=${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@"
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh
cd ..

View File

@ -1,6 +1,8 @@
build.sh:293285766098a4e3d4d708e58a69de82 *- build2.sh:8e21e7c419a3c3974ab32902802a8c7a -
clean.sh:668a2f9b568c55f6a044a509315032f6 *- build.sh:b247061c83c39b1bb78ac7642534ba2c -
commit.sh:5e4448db9ad48e72ec3a1ff4f5763b41 *- clean.sh:668a2f9b568c55f6a044a509315032f6 -
jar.sh:2f59229fcaf02779bfaa43144f3be66f *- commit.sh:5e4448db9ad48e72ec3a1ff4f5763b41 -
release.sh:b1b62203411b18d0fec1db3dc2e5a061 *- jar2.sh:7977fc138ee5db798d08c34734f0be93 -
update.sh:3be721658983183efa395984acd96b03 *- jar.sh:821d5a109324d405f05c35c4bb129375 -
release.sh:b1b62203411b18d0fec1db3dc2e5a061 -
update.sh:3be721658983183efa395984acd96b03 -

2
sig
View File

@ -1,4 +1,4 @@
export AUTO_UPDATE=false export AUTO_UPDATE=true
source utils/define.sh source utils/define.sh

View File

@ -1,5 +1,5 @@
.coauthors .coauthors
.updateDirectories
define.sh define.sh
main.sh main.sh
search.sh search.sh
.updateDirectories

View File

@ -1,4 +1,4 @@
.updateDirectories:0ede00461e947494545e694040787b3f *- define.sh:3ecab0dffe2adfb950f3eb7c7061b750 -
define.sh:3ecab0dffe2adfb950f3eb7c7061b750 *- main.sh:d3d1bd0b56d8114eb7479964227f8576 -
main.sh:d3d1bd0b56d8114eb7479964227f8576 *- search.sh:81d08f5ff48e8a44b5f68387d426da05 -
search.sh:81d08f5ff48e8a44b5f68387d426da05 *- .updateDirectories:0ede00461e947494545e694040787b3f -