2021-01-22 19:44:05 +03:00
#!/usr/bin/env bash
2019-09-24 09:56:39 +03:00
set -eu
2019-12-21 00:49:27 +03:00
2021-03-12 00:00:38 +03:00
SCRIPT = " $( dirname " ${ 0 } " ) "
export SERENITY_ARCH = " ${ SERENITY_ARCH :- i686 } "
2021-09-24 23:15:38 +03:00
export SERENITY_TOOLCHAIN = " ${ SERENITY_TOOLCHAIN :- GCC } "
2021-04-12 00:21:01 +03:00
2021-08-13 21:51:04 +03:00
if [ -z " ${ HOST_CC : = } " ] ; then
export HOST_CC = " ${ CC : =cc } "
export HOST_CXX = " ${ CXX : =c++ } "
export HOST_AR = " ${ AR : =ar } "
export HOST_RANLIB = " ${ RANLIB : =ranlib } "
export HOST_PATH = " ${ PATH : = } "
export HOST_PKG_CONFIG_DIR = " ${ PKG_CONFIG_DIR : = } "
export HOST_PKG_CONFIG_SYSROOT_DIR = " ${ PKG_CONFIG_SYSROOT_DIR : = } "
export HOST_PKG_CONFIG_LIBDIR = " ${ PKG_CONFIG_LIBDIR : = } "
fi
2021-04-12 00:21:01 +03:00
DESTDIR = "/"
2021-03-11 21:50:44 +03:00
2021-04-03 06:53:41 +03:00
maybe_source( ) {
if [ -f " $1 " ] ; then
. " $1 "
fi
}
2021-04-12 00:21:01 +03:00
2021-04-18 10:13:16 +03:00
enable_ccache( ) {
if command -v ccache & >/dev/null; then
2021-04-27 18:10:18 +03:00
ccache_tooldir = " ${ SERENITY_BUILD_DIR } /ccache "
mkdir -p " $ccache_tooldir "
for tool in gcc g++ c++; do
ln -sf " $( command -v ccache) " " ${ ccache_tooldir } / ${ SERENITY_ARCH } -pc-serenity- ${ tool } "
done
export PATH = " ${ ccache_tooldir } : $PATH "
2021-04-18 10:13:16 +03:00
fi
}
2021-04-12 00:21:01 +03:00
target_env( ) {
maybe_source " ${ SCRIPT } /.hosted_defs.sh "
}
target_env
host_env( ) {
export CC = " ${ HOST_CC } "
export CXX = " ${ HOST_CXX } "
export AR = " ${ HOST_AR } "
export RANLIB = " ${ HOST_RANLIB } "
export PATH = " ${ HOST_PATH } "
export PKG_CONFIG_DIR = " ${ HOST_PKG_CONFIG_DIR } "
export PKG_CONFIG_SYSROOT_DIR = " ${ HOST_PKG_CONFIG_SYSROOT_DIR } "
export PKG_CONFIG_LIBDIR = " ${ HOST_PKG_CONFIG_LIBDIR } "
2021-04-18 10:13:16 +03:00
enable_ccache
2021-04-12 00:21:01 +03:00
}
2021-04-03 06:53:41 +03:00
packagesdb = " ${ DESTDIR } /usr/Ports/packages.db "
2019-05-28 01:02:29 +03:00
2021-09-27 01:16:18 +03:00
makeopts = ( " -j $( nproc) " )
installopts = ( )
2021-09-26 21:46:41 +03:00
configscript = configure
2021-09-27 01:16:18 +03:00
configopts = ( )
2021-09-26 21:46:41 +03:00
useconfigure = false
2021-09-27 01:16:18 +03:00
depends = ( )
2021-09-26 21:46:41 +03:00
patchlevel = 1
auth_type =
auth_import_key =
2021-09-27 01:16:18 +03:00
auth_opts = ( )
2021-09-26 21:46:41 +03:00
launcher_name =
launcher_category =
launcher_command =
launcher_run_in_terminal = false
icon_file =
2019-09-24 09:56:39 +03:00
. " $@ "
shift
: " ${ workdir : = $port - $version } "
2019-05-28 02:25:29 +03:00
2019-09-24 09:56:39 +03:00
run_nocd( ) {
2019-05-28 03:58:36 +03:00
echo " + $@ (nocd) "
( " $@ " )
}
2021-05-20 22:04:40 +03:00
2019-09-24 09:56:39 +03:00
run( ) {
echo " + $@ "
( cd " $workdir " && " $@ " )
2019-05-28 01:02:29 +03:00
}
2021-05-20 22:04:40 +03:00
2021-04-20 19:36:03 +03:00
run_replace_in_file( ) {
2019-11-03 12:05:02 +03:00
run perl -p -i -e " $1 " $2
2019-09-24 09:56:39 +03:00
}
2021-05-20 22:04:40 +03:00
ensure_build( ) {
# Sanity check.
if [ ! -f " ${ DESTDIR } /usr/lib/libc.so " ] ; then
echo "libc.so could not be found. This likely means that SerenityOS:"
echo "- has not been built and/or installed yet"
echo "- has been installed in an unexpected location"
echo " The currently configured build directory is ${ SERENITY_BUILD_DIR } . Resolve this issue and try again. "
exit 1
fi
}
2021-06-06 05:45:20 +03:00
install_main_icon( ) {
if [ -n " $icon_file " ] && [ -n " $launcher_command " ] ; then
2021-08-04 11:50:27 +03:00
local launcher_binary = " ${ launcher_command %% * } "
install_icon " $icon_file " " ${ launcher_binary } "
2021-06-06 05:45:20 +03:00
fi
}
install_icon( ) {
if [ " $# " -lt 2 ] ; then
echo "Syntax: install_icon <icon> <launcher>"
exit 1
fi
2021-08-04 11:50:27 +03:00
local icon = " $1 "
local launcher = " $2 "
command -v convert >/dev/null || true
local convert_exists = $?
command -v identify >/dev/null || true
local identify_exists = $?
if [ " ${ convert_exists } " != "0" ] || [ " ${ identify_exists } " != 0 ] ; then
echo 'Unable to install icon: missing convert or identify, did you install ImageMagick?'
return
2021-06-06 05:45:20 +03:00
fi
2021-08-04 11:50:27 +03:00
for icon_size in "16x16" "32x32" ; do
index = $( run identify " $icon " | grep " $icon_size " | grep -oE "\[[0-9]+\]" | tr -d "[]" | head -n1)
if [ -n " $index " ] ; then
run convert " ${ icon } [ ${ index } ] " " app- ${ icon_size } .png "
else
2021-08-04 12:20:31 +03:00
run convert " $icon [0] " -resize $icon_size " app- ${ icon_size } .png "
2021-08-04 11:50:27 +03:00
fi
done
run objcopy --add-section serenity_icon_s = "app-16x16.png" " ${ DESTDIR } ${ launcher } "
run objcopy --add-section serenity_icon_m = "app-32x32.png" " ${ DESTDIR } ${ launcher } "
2021-06-06 05:45:20 +03:00
}
2021-06-04 00:39:01 +03:00
install_main_launcher( ) {
if [ -n " $launcher_name " ] && [ -n " $launcher_category " ] && [ -n " $launcher_command " ] ; then
install_launcher " $launcher_name " " $launcher_category " " $launcher_command "
fi
}
2021-04-20 19:36:03 +03:00
install_launcher( ) {
2021-06-04 00:39:01 +03:00
if [ " $# " -lt 3 ] ; then
echo "Syntax: install_launcher <name> <category> <command>"
exit 1
2021-04-20 19:36:03 +03:00
fi
2021-08-04 14:18:31 +03:00
local launcher_name = " $1 "
local launcher_category = " $2 "
local launcher_command = " $3 "
local launcher_filename = " ${ launcher_name ,, } "
2021-06-04 00:39:01 +03:00
launcher_filename = " ${ launcher_filename // / } "
2021-08-04 14:18:31 +03:00
local icon_override = ""
2021-06-04 00:39:01 +03:00
case " $launcher_command " in
*\ *)
mkdir -p $DESTDIR /usr/local/libexec
launcher_executable = " /usr/local/libexec/ $launcher_filename "
cat >" $DESTDIR / $launcher_executable " <<SCRIPT
2021-04-20 19:36:03 +03:00
#!/bin/sh
exec $( printf '%q ' $launcher_command )
SCRIPT
2021-06-04 00:39:01 +03:00
chmod +x " $DESTDIR / $launcher_executable "
2021-08-04 14:18:31 +03:00
icon_override = " IconPath= ${ launcher_command %% * } "
2021-06-04 00:39:01 +03:00
; ;
*)
launcher_executable = " $launcher_command "
; ;
esac
2021-04-20 19:36:03 +03:00
mkdir -p $DESTDIR /res/apps
2021-06-04 00:39:01 +03:00
cat >$DESTDIR /res/apps/$launcher_filename .af <<CONFIG
2021-04-20 19:36:03 +03:00
[ App]
Name = $launcher_name
2021-06-04 00:39:01 +03:00
Executable = $launcher_executable
2021-04-20 19:36:03 +03:00
Category = $launcher_category
2021-07-20 00:06:09 +03:00
RunInTerminal = $launcher_run_in_terminal
2021-08-04 14:18:31 +03:00
${ icon_override }
2021-04-20 19:36:03 +03:00
CONFIG
}
2019-09-24 09:56:39 +03:00
# Checks if a function is defined. In this case, if the function is not defined in the port's script, then we will use our defaults. This way, ports don't need to include these functions every time, but they can override our defaults if needed.
func_defined( ) {
2019-11-03 12:05:02 +03:00
PATH = command -V " $1 " > /dev/null 2>& 1
2019-09-24 09:56:39 +03:00
}
2020-02-04 03:07:27 +03:00
2021-07-20 16:40:41 +03:00
func_defined pre_fetch || pre_fetch( ) {
:
}
2020-02-04 03:07:27 +03:00
func_defined post_fetch || post_fetch( ) {
:
}
fetch( ) {
2021-07-20 16:40:41 +03:00
pre_fetch
2021-04-25 12:54:45 +03:00
if [ " $auth_type " = "sig" ] && [ ! -z " ${ auth_import_key } " ] ; then
2020-02-04 03:07:27 +03:00
# import gpg key if not existing locally
2020-06-09 22:10:00 +03:00
# The default keyserver keys.openpgp.org prints "new key but contains no user ID - skipped"
# and fails. Use a different key server.
gpg --list-keys $auth_import_key || gpg --keyserver hkps://keyserver.ubuntu.com --recv-key $auth_import_key
2020-02-04 03:07:27 +03:00
fi
2021-04-25 13:48:19 +03:00
tried_download_again = 0
while true; do
OLDIFS = $IFS
IFS = $'\n'
for f in $files ; do
IFS = $OLDIFS
read url filename auth_sum<<< $( echo " $f " )
echo " Downloading URL: ${ url } "
# FIXME: Serenity's curl port does not support https, even with openssl installed.
if which curl >/dev/null 2>& 1 && ! curl https://example.com -so /dev/null; then
url = $( echo " $url " | sed "s/^https:\/\//http:\/\//" )
fi
2021-04-11 02:01:20 +03:00
2021-04-25 13:48:19 +03:00
# download files
if [ -f " $filename " ] ; then
echo " $filename already exists "
else
if which curl; then
run_nocd curl ${ curlopts :- } " $url " -L -o " $filename "
else
run_nocd pro " $url " > " $filename "
fi
fi
done
verification_failed = 0
OLDIFS = $IFS
IFS = $'\n'
for f in $files ; do
IFS = $OLDIFS
read url filename auth_sum<<< $( echo " $f " )
# check sha256sum if given
if [ " $auth_type " = "sha256" ] ; then
echo " Expecting ${ auth_type } sum: $auth_sum "
calc_sum = " $( sha256sum $filename | cut -f1 -d' ' ) "
echo " ${ auth_type } sum( $filename ) = ' $calc_sum ' "
if [ " $calc_sum " != " $auth_sum " ] ; then
# remove downloaded file to re-download on next run
rm -f $filename
echo " ${ auth_type } sums mismatching, removed erronous download. "
if [ $tried_download_again -eq 1 ] ; then
echo "Please run script again."
exit 1
fi
echo "Trying to download the files again."
tried_download_again = 1
verification_failed = 1
fi
fi
done
2021-04-11 02:01:20 +03:00
2021-04-25 13:48:19 +03:00
# check signature
if [ " $auth_type " = "sig" ] ; then
if $NO_GPG ; then
echo "WARNING: gpg signature check was disabled by --no-gpg-verification"
2021-04-11 21:07:32 +03:00
else
2021-09-27 01:16:18 +03:00
if $( gpg --verify " ${ auth_opts [@] } " ) ; then
2021-04-25 13:48:19 +03:00
echo "- Signature check OK."
else
echo "- Signature check NOT OK"
for f in $files ; do
rm -f $f
done
rm -rf " $workdir "
echo " Signature mismatching, removed erronous download."
if [ $tried_download_again -eq 1 ] ; then
echo "Please run script again."
exit 1
fi
echo "Trying to download the files again."
tried_download_again = 1
verification_failed = 1
fi
2021-04-11 21:07:32 +03:00
fi
2020-02-04 03:07:27 +03:00
fi
2021-04-25 13:48:19 +03:00
if [ $verification_failed -ne 1 ] ; then
break
2020-02-04 03:07:27 +03:00
fi
2021-04-25 13:48:19 +03:00
done
# extract
OLDIFS = $IFS
IFS = $'\n'
for f in $files ; do
IFS = $OLDIFS
read url filename auth_sum<<< $( echo " $f " )
2020-02-04 03:07:27 +03:00
if [ ! -f " $workdir " /.${ filename } _extracted ] ; then
case " $filename " in
2021-04-11 02:01:20 +03:00
*.tar.gz| *.tgz)
run_nocd tar -xzf " $filename "
run touch .${ filename } _extracted
; ;
2020-02-04 03:07:27 +03:00
*.tar.gz| *.tar.bz| *.tar.bz2| *.tar.xz| *.tar.lz| .tbz*| *.txz| *.tgz)
2021-04-11 02:01:20 +03:00
run_nocd tar -xf " $filename "
2020-02-04 03:07:27 +03:00
run touch .${ filename } _extracted
; ;
*.gz)
run_nocd gunzip " $filename "
run touch .${ filename } _extracted
; ;
*.zip)
run_nocd bsdtar xf " $filename " || run_nocd unzip -qo " $filename "
run touch .${ filename } _extracted
; ;
*.asc)
run_nocd gpg --import " $filename " || true
; ;
*)
echo " Note: no case for file $filename . "
; ;
esac
2019-12-23 15:24:56 +03:00
fi
done
2020-02-04 03:07:27 +03:00
post_fetch
}
2021-06-10 19:57:29 +03:00
func_defined pre_patch || pre_patch( ) {
:
}
2020-02-04 03:07:27 +03:00
func_defined patch_internal || patch_internal( ) {
# patch if it was not yet patched (applying patches multiple times doesn't work!)
2019-09-24 09:56:39 +03:00
if [ -d patches ] ; then
2021-01-17 10:14:27 +03:00
for filepath in patches/*.patch; do
2020-02-04 03:07:27 +03:00
filename = $( basename $filepath )
if [ ! -f " $workdir " /.${ filename } _applied ] ; then
run patch -p" $patchlevel " < " $filepath "
run touch .${ filename } _applied
fi
2019-09-24 09:56:39 +03:00
done
2019-05-28 19:55:49 +03:00
fi
}
2020-04-15 15:54:23 +03:00
func_defined pre_configure || pre_configure( ) {
:
}
2019-09-24 09:56:39 +03:00
func_defined configure || configure( ) {
2021-01-22 19:09:40 +03:00
chmod +x " ${ workdir } " /" $configscript "
2021-09-27 01:16:18 +03:00
run ./" $configscript " --host= " ${ SERENITY_ARCH } -pc-serenity " " ${ configopts [@] } "
2019-05-28 19:55:49 +03:00
}
2021-02-01 21:40:19 +03:00
func_defined post_configure || post_configure( ) {
:
}
2019-09-24 09:56:39 +03:00
func_defined build || build( ) {
2021-09-27 01:16:18 +03:00
run make " ${ makeopts [@] } "
2019-05-28 11:25:39 +03:00
}
2019-09-24 09:56:39 +03:00
func_defined install || install( ) {
2021-09-27 01:16:18 +03:00
run make DESTDIR = $DESTDIR " ${ installopts [@] } " install
2019-05-28 02:25:29 +03:00
}
2020-03-25 17:54:30 +03:00
func_defined post_install || post_install( ) {
echo
}
2019-09-24 09:56:39 +03:00
func_defined clean || clean( ) {
2019-11-03 12:05:02 +03:00
rm -rf " $workdir " *.out
2019-05-28 01:02:29 +03:00
}
2019-09-24 09:56:39 +03:00
func_defined clean_dist || clean_dist( ) {
OLDIFS = $IFS
IFS = $'\n'
for f in $files ; do
IFS = $OLDIFS
read url filename hash <<< $( echo " $f " )
rm -f " $filename "
done
2019-05-28 01:02:29 +03:00
}
2019-09-24 09:56:39 +03:00
func_defined clean_all || clean_all( ) {
2019-11-03 12:05:02 +03:00
rm -rf " $workdir " *.out
2019-09-24 09:56:39 +03:00
OLDIFS = $IFS
IFS = $'\n'
for f in $files ; do
IFS = $OLDIFS
read url filename hash <<< $( echo " $f " )
rm -f " $filename "
done
2019-05-28 01:02:29 +03:00
}
2019-09-24 09:56:39 +03:00
addtodb( ) {
2021-02-01 21:36:18 +03:00
if [ ! -f " $packagesdb " ] ; then
echo " Note: $packagesdb does not exist. Creating. "
2021-04-03 06:53:41 +03:00
mkdir -p " ${ DESTDIR } /usr/Ports/ "
2021-02-01 21:36:18 +03:00
touch " $packagesdb "
2019-09-24 09:56:39 +03:00
fi
2021-02-01 21:36:18 +03:00
if ! grep -E " ^(auto|manual) $port $version " " $packagesdb " > /dev/null; then
2021-08-15 16:47:30 +03:00
echo " Adding $port $version to database of installed ports... "
2019-09-24 09:56:39 +03:00
if [ " ${ 1 :- } " = "--auto" ] ; then
2021-02-01 21:36:18 +03:00
echo " auto $port $version " >> " $packagesdb "
2019-09-24 09:56:39 +03:00
else
2021-02-01 21:36:18 +03:00
echo " manual $port $version " >> " $packagesdb "
2019-11-03 12:05:02 +03:00
if [ ! -z " ${ dependlist :- } " ] ; then
2021-02-01 21:36:18 +03:00
echo " dependency $port $dependlist " >> " $packagesdb "
2019-09-24 09:56:39 +03:00
fi
fi
2021-08-15 16:47:30 +03:00
echo " Successfully installed $port $version . "
2019-09-24 09:56:39 +03:00
else
>& 2 echo " Warning: $port $version already installed. Not adding to database of installed ports! "
fi
2019-05-28 01:02:29 +03:00
}
2019-09-24 09:56:39 +03:00
installdepends( ) {
2021-09-27 01:16:18 +03:00
for depend in " ${ depends [@] } " ; do
2019-09-24 09:56:39 +03:00
dependlist = " ${ dependlist :- } $depend "
done
2021-09-27 01:16:18 +03:00
for depend in " ${ depends [@] } " ; do
2021-02-01 21:36:18 +03:00
if ! grep " $depend " " $packagesdb " > /dev/null; then
2019-09-24 09:56:39 +03:00
( cd " ../ $depend " && ./package.sh --auto)
fi
done
2019-05-28 05:02:42 +03:00
}
2019-09-24 09:56:39 +03:00
uninstall( ) {
2021-02-01 21:36:18 +03:00
if grep " ^manual $port " " $packagesdb " > /dev/null; then
2019-09-24 09:56:39 +03:00
if [ -f plist ] ; then
for f in ` cat plist` ; do
case $f in
*/)
2021-04-03 06:53:41 +03:00
run rmdir " ${ DESTDIR } / $f " || true
2019-09-24 09:56:39 +03:00
; ;
*)
2021-04-03 06:53:41 +03:00
run rm -rf " ${ DESTDIR } / $f "
2019-09-24 09:56:39 +03:00
; ;
esac
done
# Without || true, mv will not be executed if you are uninstalling your only remaining port.
2021-02-01 21:36:18 +03:00
grep -v " ^manual $port " " $packagesdb " > packages.db.tmp || true
mv packages.db.tmp " $packagesdb "
2019-09-24 09:56:39 +03:00
else
>& 2 echo "Error: This port does not have a plist yet. Cannot uninstall."
fi
else
>& 2 echo " Error: $port is not installed. Cannot uninstall. "
fi
}
2021-01-21 11:31:31 +03:00
do_installdepends( ) {
2021-08-15 16:47:30 +03:00
echo " Installing dependencies of $port ... "
2019-09-24 09:56:39 +03:00
installdepends
2021-01-21 11:31:31 +03:00
}
do_fetch( ) {
2021-08-15 16:47:30 +03:00
echo " Fetching $port ... "
2019-05-28 01:02:29 +03:00
fetch
2019-09-24 09:56:39 +03:00
}
2020-02-04 03:07:27 +03:00
do_patch( ) {
2021-08-15 16:47:30 +03:00
echo " Patching $port ... "
2021-06-10 19:57:29 +03:00
pre_patch
2020-02-04 03:07:27 +03:00
patch_internal
}
2019-09-24 09:56:39 +03:00
do_configure( ) {
2021-05-20 22:04:40 +03:00
ensure_build
2019-09-24 09:56:39 +03:00
if [ " $useconfigure " = "true" ] ; then
2021-08-15 16:47:30 +03:00
echo " Configuring $port ... "
2020-04-15 15:54:23 +03:00
pre_configure
2019-09-24 09:56:39 +03:00
configure
2021-02-01 21:40:19 +03:00
post_configure
2019-09-24 09:56:39 +03:00
else
echo "This port does not use a configure script. Skipping configure step."
fi
}
do_build( ) {
2021-05-20 22:04:40 +03:00
ensure_build
2021-08-15 16:47:30 +03:00
echo " Building $port ... "
2019-05-28 01:02:29 +03:00
build
2019-09-24 09:56:39 +03:00
}
do_install( ) {
2021-05-20 22:04:40 +03:00
ensure_build
2021-08-15 16:47:30 +03:00
echo " Installing $port ... "
2019-05-28 01:02:29 +03:00
install
2021-06-04 00:39:01 +03:00
install_main_launcher
2021-06-06 05:45:20 +03:00
install_main_icon
2020-03-25 17:54:30 +03:00
post_install
2019-09-24 09:56:39 +03:00
addtodb " ${ 1 :- } "
}
do_clean( ) {
2021-08-15 16:47:30 +03:00
echo " Cleaning workdir and .out files in $port ... "
2019-09-24 09:56:39 +03:00
clean
}
do_clean_dist( ) {
2021-08-15 16:47:30 +03:00
echo " Cleaning dist in $port ... "
2019-09-24 09:56:39 +03:00
clean_dist
}
do_clean_all( ) {
2021-08-15 16:47:30 +03:00
echo " Cleaning all in $port ... "
2019-09-24 09:56:39 +03:00
clean_all
}
do_uninstall( ) {
2021-08-15 16:47:30 +03:00
echo " Uninstalling $port ... "
2019-09-24 09:56:39 +03:00
uninstall
}
2021-04-23 14:53:53 +03:00
do_showproperty( ) {
2021-09-27 01:16:18 +03:00
if ! declare -p " ${ 1 } " > /dev/null 2>& 1; then
2021-04-23 14:53:53 +03:00
echo " Property ' $1 ' is not set. " >& 2
exit 1
fi
2021-09-27 01:16:18 +03:00
property_declaration = " $( declare -p " ${ 1 } " ) "
if [ [ " $property_declaration " = ~ "declare -a" ] ] ; then
prop_array = " ${ 1 } [@] "
# Some magic to avoid empty arrays being considered unset.
echo " ${ !prop_array+ " ${ !prop_array } " } "
else
echo ${ !1 }
fi
2021-04-21 23:53:02 +03:00
}
2019-09-24 09:56:39 +03:00
do_all( ) {
2021-01-21 11:31:31 +03:00
do_installdepends
2019-09-24 09:56:39 +03:00
do_fetch
2020-02-04 03:07:27 +03:00
do_patch
2019-09-24 09:56:39 +03:00
do_configure
do_build
do_install " ${ 1 :- } "
}
2019-05-28 01:02:29 +03:00
2021-07-08 01:43:44 +03:00
do_shell( ) {
do_installdepends
do_fetch
do_patch
cd " $workdir "
bash
echo "End of package shell. Back to the User shell."
}
2021-04-11 02:01:20 +03:00
NO_GPG = false
parse_arguments( ) {
if [ -z " ${ 1 :- } " ] ; then
do_all
2021-10-20 01:14:40 +03:00
return
2021-04-11 02:01:20 +03:00
fi
2021-10-20 01:14:40 +03:00
case " $1 " in
fetch| patch| shell| configure| build| install| installdepends| clean| clean_dist| clean_all| uninstall| showproperty)
method = $1
shift
do_${ method } " $@ "
; ;
--auto)
do_all $1
; ;
--no-gpg-verification)
NO_GPG = true
shift
parse_arguments $@
; ;
*)
>& 2 echo " I don't understand $1 ! Supported arguments: fetch, patch, configure, build, install, installdepends, clean, clean_dist, clean_all, uninstall, showproperty. "
exit 1
; ;
esac
2021-04-11 02:01:20 +03:00
}
parse_arguments $@