2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-11-07 15:20:36 +00:00
NanoDroid/data/build-package.pkg-full

29 lines
446 B
Plaintext
Raw Normal View History

2018-01-23 20:11:52 +00:00
#!/bin/bash
create_full_package () {
ZIP="${CWD}/NanoDroid-${VERSION}".zip
2018-11-10 07:56:59 +00:00
rm -f "${ZIP}"*
2018-01-23 20:11:52 +00:00
print_package "Full"
cd "${CWD}/Full"
zip_add
cd "${CWD}"
for file in Common{Installer,Addon} busybox.* sqlite3.*; do
zip_add ${file}
done
2018-01-23 20:11:52 +00:00
zip_add_doc
zip_add_config .nanodroid-overlay
2018-01-23 20:11:52 +00:00
zip_add_config .nanodroid-setup 0
zip_add_config .nanodroid-apps
sum_sign_package "${ZIP}"
2018-01-23 20:11:52 +00:00
}
mk_pkg_full () {
create_full_package &
progress $!
}