You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NanoDroid/data/build-package.pkg-full

29 lines
446 B
Bash

#!/bin/bash
create_full_package () {
ZIP="${CWD}/NanoDroid-${VERSION}".zip
rm -f "${ZIP}"*
print_package "Full"
cd "${CWD}/Full"
zip_add
cd "${CWD}"
for file in Common{Installer,Addon} busybox.* sqlite3.*; do
zip_add ${file}
done
zip_add_doc
zip_add_config .nanodroid-overlay
zip_add_config .nanodroid-setup 0
zip_add_config .nanodroid-apps
sum_sign_package "${ZIP}"
}
mk_pkg_full () {
create_full_package &
progress $!
}