aboutsummaryrefslogtreecommitdiff
path: root/configure
blob: bd7800f21c13a5e35312720c26d5eb283383f956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/bin/sh

# This file is part of Haketilo
#
# Copyright (C) 2021, jahoti
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the CC0 1.0 Universal License as published by
# the Creative Commons Corporation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# CC0 1.0 Universal License for more details.

set -e

BROWSERPATH=''
SRCDIR=''
TARGET=''
BROWSER_BINARY=''
CLEAN_PROFILE=''
DRIVER=''
PYTEST=''

# Parse command line options
while [ "x$1" != x ]; do
    case "$1" in
	--srcdir=*)                 SRCDIR="$(printf %s "$1" | cut -c 10-)";;
	--srcdir)                                        SRCDIR="$2"; shift;;
	--browser-binary=*) BROWSER_BINARY="$(printf %s "$1" | cut -c 18-)";;
	--browser-binary)                        BROWSER_BINARY="$2"; shift;;
	--clean-profile=*)   CLEAN_PROFILE="$(printf %s "$1" | cut -c 17-)";;
	--clean-profile)                          CLEAN_PROFILE="$2"; shift;;
	--driver=*)                 DRIVER="$(printf %s "$1" | cut -c 10-)";;
	--driver)                                        DRIVER="$2"; shift;;
	--pytest=*)                 PYTEST="$(printf %s "$1" | cut -c 10-)";;
	--pytest)                                        PYTEST="$2"; shift;;
	--srcdir)                                        SRCDIR="$2"; shift;;
	"DESTDIR"=*)                DESTDIR="$(printf %s "$1" | cut -c 9-)";;
	"UPDATE_URL"=*)         UPDATE_URL="$(printf %s "$1" | cut -c 12-)";;
	--host=*)                    TARGET="$(printf %s "$1" | cut -c 8-)";;
	--host)                                          TARGET="$2"; shift;;

	# browsers
	chromium | chrome | google-chrome | mozilla |\
	firefox | librewolf | icecat | iceweasel | abrowser |\
	iceweasel-uxp | tor-browser)                 TARGET=$1;;
	*)                         echo Ignoring option "'$1'";;
    esac
    shift
done

# Autodetect srcdir
if [ "x$SRCDIR" = x ]; then
    SRCDIR=..
    if [ -f manifest.json ] && [ -f write_makefile.sh ]; then
	SRCDIR=.
    fi
fi

# Check srcdir
if [ ! -f "$SRCDIR"/manifest.json ]; then
    echo Invalid source directory "'$SRCDIR'": missing manifest.json >&2
    exit 1
elif [ ! -f "$SRCDIR"/write_makefile.sh ]; then
    echo Invalid source directory "'$SRCDIR'": missing write_makefile.sh >&2
    exit 1
fi

# Autodetect target
if [ "x$TARGET" = x ]; then
    echo Detecting target automatically.
    if [ -h /etc/alternatives/x-www-browser ]; then
	BROWSERPATH="$(realpath /etc/alternatives/x-www-browser)"
	TARGET="$(/etc/alternatives/x-www-browser --version 2> /dev/null |
	    tail -n 1 | awk '{ print $1 }' | tr [A-Z] [a-z])"
    else
    	echo Warning: could not find target automatically. >&2
    	echo Some make rules may fail. >&2
    fi
else
    BROWSERPATH="$(realpath "$(which $TARGET)")"
fi

# Autodetect browser binary (needed for Selenium)
if [ "x$BROWSER_BINARY" = x ]; then
    if [ "x$TARGET" = xabrowser ]; then
	# Trisquel's path to Abrowser
	BROWSER_BINARY=/usr/lib/abrowser/abrowser
    if [ "x$TARGET" = xabrowser ]; then
	# Debian's path to Librewolf
	BROWSER_BINARY=/usr/share/librewolf/librewolf
    elif [ "x$TARGET" = xicecat ]; then
	# Parabola's path to IceCat
	BROWSER_BINARY=/usr/lib/icecat/icecat
    fi
fi

# Check and standardize target
case "$TARGET" in
    mozilla | firefox | abrowser | icecat | iceweasel-uxp |\
    librewolf | iceweasel | gnu | tor-browser)   TARGET=mozilla;;
    chromium | chrome | google-chrome | google) TARGET=chromium;;
    "")                                                        ;;
    *)              echo Invalid target "'$TARGET'" >&2; exit 2;;
esac

# Autodetect Selenium driver
if [ "x$DRIVER" = x ]; then
    if [ "x$TARGET" = mozilla ]; then
	DRIVER=geckodriver
    fi
fi

# Autodetect clean profile directory for use in selenium tests
if [ "x$CLEAN_PROFILE" = x ]; then
    if [ "x$TARGET" = mozilla ]; then
	CLEAN_PROFILE="$SRCDIR"/test/default_profile/icecat_empty
    fi
fi

# Autodetect pytest
for PYTEST_GUESS in pytest pytest-3 pytest3; do
    if [ "x$PYTEST" = x ]; then
	PYTEST="$(which $PYTEST_GUESS || true)"
    fi
done

# Autodetect DESTDIR (no check needed)
if [ "x$DESTDIR" = x ]; then
    echo Guessing installation directory.
    if [ -n "$BROWSERPATH" ] && [ -n "$TARGET" ]; then
	DESTDIR="$(dirname "$BROWSERPATH")" # TODO: a hack for Debian?
	if [ $TARGET = mozilla ]; then
	    DESTDIR="$DESTDIR"/browser
	fi
	DESTDIR="$DESTDIR"/extensions
    else
    	echo Warning: could not guess installation directory. >&2
    	echo Some make rules may fail. >&2
    fi
fi

# Write record.conf (LEAVE SRCDIR FIRST)
printf '%s\n' "srcdir = $SRCDIR" > record.conf
printf '%s\n' "default_target = $TARGET" >> record.conf
printf '%s\n' "DESTDIR = $DESTDIR" >> record.conf
printf '%s\n' "UPDATE_URL = $UPDATE_URL" >> record.conf
printf '%s\n' "DRIVER = $DRIVER" >> record.conf
printf '%s\n' "BROWSER_BINARY = $BROWSER_BINARY" >> record.conf
printf '%s\n' "CLEAN_PROFILE = $CLEAN_PROFILE" >> record.conf
printf '%s\n' "PYTEST = $PYTEST" >> record.conf

# Prepare and run write_makefile.sh (as config.status)
if [ ! -e config.status ]; then
    cp "$SRCDIR"/write_makefile.sh config.status
fi

./config.status