2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-10-31 09:20:23 +00:00
NanoDroid/build-package

160 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-01-23 20:11:52 +00:00
#!/bin/bash
VERSION=22.3.20190805
2018-01-23 20:11:52 +00:00
CWD=$(readlink -m "${BASH_SOURCE[0]}")
CWD=$(dirname "${CWD}")
for funcfile in pkg update common download database report; do
2018-01-23 20:11:52 +00:00
source "${CWD}/data/build-package.${funcfile}" || exit 1
done
[[ -z ${1} ]] && show_help
for opt in ${@}; do
case ${opt} in
full)
2018-09-14 16:57:52 +00:00
check_nanodroid || error "run nanodroid-pull first!"
2018-01-23 20:11:52 +00:00
mk_pkg_full
;;
microg )
2018-09-14 16:57:52 +00:00
check_nanodroid || error "run nanodroid-pull first!"
2018-01-23 20:11:52 +00:00
mk_pkg_microg
;;
fdroid )
2018-09-14 16:57:52 +00:00
check_nanodroid || error "run nanodroid-pull first!"
2018-01-23 20:11:52 +00:00
mk_pkg_fdroid
;;
patcher )
mk_pkg_patcher
;;
uninstaller )
mk_pkg_uninstaller
;;
setupwizard )
mk_pkg_setupwizard
;;
2018-11-08 17:27:34 +00:00
bromitewebview )
2018-11-09 20:18:04 +00:00
check_nanodroid || error "run nanodroid-pull first!"
2018-11-08 17:34:57 +00:00
mk_pkg_bromite_webview
2018-11-08 17:27:34 +00:00
;;
2018-11-23 20:04:36 +00:00
osmand )
check_nanodroid || error "run nanodroid-pull first!"
mk_pkg_osmand
;;
2018-11-20 17:25:52 +00:00
systest )
mk_pkg_systest
;;
2018-01-23 20:11:52 +00:00
all )
2018-09-14 16:57:52 +00:00
check_nanodroid || error "run nanodroid-pull first!"
2018-01-23 20:11:52 +00:00
mk_pkg_full
mk_pkg_microg
mk_pkg_fdroid
mk_pkg_patcher
mk_pkg_uninstaller
mk_pkg_setupwizard
2018-11-08 17:27:34 +00:00
mk_pkg_bromite_webview
2018-11-23 20:04:36 +00:00
mk_pkg_osmand
2018-11-20 17:25:52 +00:00
mk_pkg_systest
2018-01-23 20:11:52 +00:00
;;
ver )
increase_version_number "${@}"
;;
bump )
increase_module_version
;;
dalvik )
dalvikize_jar "${2}"
;;
pull )
2018-09-15 17:21:52 +00:00
update_indices
2018-01-23 20:11:52 +00:00
nanodroid_pull
check_nanodroid
;;
u-microg )
2018-09-15 17:21:52 +00:00
update_indices
2018-01-23 20:11:52 +00:00
update_microg
2018-09-15 17:21:52 +00:00
check_nanodroid
2018-01-23 20:11:52 +00:00
;;
u-fdroid )
2018-09-15 17:21:52 +00:00
update_indices
2018-01-23 20:11:52 +00:00
update_fdroid
2018-09-15 17:21:52 +00:00
check_nanodroid
2018-01-23 20:11:52 +00:00
;;
u-apps )
2018-09-15 17:21:52 +00:00
update_indices
2018-01-23 20:11:52 +00:00
update_apps
2018-09-15 17:21:52 +00:00
check_nanodroid
2018-01-23 20:11:52 +00:00
;;
u-swipe )
update_swipe
2018-09-15 17:21:52 +00:00
check_nanodroid
2018-01-23 20:11:52 +00:00
;;
u-gsync )
update_gsync
2018-09-15 17:21:52 +00:00
check_nanodroid
2018-01-23 20:11:52 +00:00
;;
u-bromite )
update_indices
update_bromite
2018-11-23 20:18:01 +00:00
check_nanodroid
;;
2018-11-23 20:04:36 +00:00
u-osmand )
update_indices
update_osmand
check_nanodroid
;;
2019-03-01 13:23:44 +00:00
u-patch )
update_patches
;;
2018-01-23 20:11:52 +00:00
check )
check_nanodroid
;;
clean )
echo -ne "\nAre you sure to delete all untracked files?\n >> enter [y] or [j] to continue: "
read -r user_input
case "${user_input}" in
y | Y | j | J )
git clean -fd
;;
* )
echo "aborted"
;;
esac
;;
report )
2019-08-06 08:25:36 +00:00
check_nanodroid || error "run nanodroid-pull first!"
create_report
;;
2018-01-23 20:11:52 +00:00
* )
show_help
;;
esac
done