2017-05-10 17:16:14 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Copyright 2016 Christoph Reiter
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
source "$DIR"/_base.sh
|
|
|
|
|
|
|
|
function main {
|
2018-03-28 23:03:22 +02:00
|
|
|
set_arch "$1"
|
|
|
|
set_build_root
|
2017-05-10 17:16:14 +02:00
|
|
|
install_pre_deps
|
|
|
|
create_root
|
|
|
|
install_deps
|
2018-03-28 23:03:22 +02:00
|
|
|
install_gajim
|
2017-05-10 17:16:14 +02:00
|
|
|
cleanup_install
|
2018-09-29 19:11:44 +02:00
|
|
|
download_ssl_libs
|
2018-03-20 17:45:02 +01:00
|
|
|
move_ssl_libs
|
2017-05-10 17:16:14 +02:00
|
|
|
build_installer
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@";
|