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

23 lines
317 B
Bash

#!/bin/bash
create_full_package () {
ZIP="NanoDroid-${VERSION}.zip"
print_package "Full"
zip_add_base
zip_add Full
zip_add tools
zip_add_config .nanodroid-overlay
zip_add_config .nanodroid-setup 1
zip_add_config .nanodroid-apps
sum_sign_package
}
mk_pkg_full () {
create_full_package &
progress $!
}