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

28 lines
448 B
Bash

#!/bin/bash
create_full_package () {
[[ ! -f "${CWD}/.nanodroid-pull" ]] && \
error "run \"build-package pull\" first!"
ZIP="${CWD}/NanoDroid-${VERSION}".zip
rm -f "${ZIP}"
print_package "Full"
cd "${CWD}/Full"
zip_add
cd "${CWD}"
zip_add CommonInstaller
zip_add_doc
zip_add_config .nanodroid-overlay 0
zip_add_config .nanodroid-setup 0
zip_add_config .nanodroid-apps 0
}
mk_pkg_full () {
create_full_package &
progress $!
}