354 lines
11 KiB
Bash
354 lines
11 KiB
Bash
# Template file for 'electron9'
|
|
pkgname=electron9
|
|
version=9.4.1
|
|
_nodever=12.14.1
|
|
_chromiumver=83.0.4103.119
|
|
revision=1
|
|
archs="x86_64* i686* aarch64* ppc64le*"
|
|
build_wrksrc="src"
|
|
create_wrksrc=yes
|
|
hostmakedepends="$(vopt_if clang clang) yasm python pkgconf perl gperf bison ninja nodejs hwids
|
|
libwebp-devel freetype-devel harfbuzz-devel libpng-devel nss-devel which git libevent-devel
|
|
pciutils-devel libatomic-devel ffmpeg-devel libxml2-devel libglib-devel yarn openjdk libxslt-devel
|
|
opus-devel libXcursor-devel libXcomposite-devel libXtst-devel libXrandr-devel libXScrnSaver-devel
|
|
alsa-lib-devel re2-devel snappy-devel mit-krb5-devel $(vopt_if pulseaudio pulseaudio-devel)
|
|
$(vopt_if sndio sndio-devel)"
|
|
makedepends="libpng-devel gtk+-devel gtk+3-devel nss-devel pciutils-devel
|
|
libXi-devel libgcrypt-devel libgnome-keyring-devel cups-devel elfutils-devel
|
|
libXcomposite-devel speech-dispatcher-devel libXrandr-devel mit-krb5-devel
|
|
libXScrnSaver-devel alsa-lib-devel snappy-devel libdrm-devel
|
|
libxml2-devel libxslt-devel $(vopt_if pulseaudio pulseaudio-devel) libexif-devel
|
|
libXcursor-devel libflac-devel speex-devel libmtp-devel libwebp-devel
|
|
libjpeg-turbo-devel libevent-devel json-c-devel harfbuzz-devel
|
|
minizip-devel jsoncpp-devel zlib-devel libcap-devel libXdamage-devel
|
|
re2-devel fontconfig-devel freetype-devel opus-devel libatomic-devel
|
|
$(vopt_if sndio sndio-devel) ffmpeg-devel libva-devel libuv-devel c-ares-devel libnotify-devel"
|
|
short_desc="Cross platform application development framework based on web technologies"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://electronjs.org"
|
|
distfiles="https://github.com/electron/electron/archive/v$version.tar.gz>electron-${version}.tar.gz
|
|
https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$_chromiumver.tar.xz
|
|
https://github.com/nodejs/node/archive/v$_nodever.tar.gz>node-$_nodever.tar.gz"
|
|
checksum="953e34b156fc9cd49b8f39daf662b279930913eea7bf47265ce60b576dfc7a36
|
|
452cbc58895a46b2b87ba450a3f86897de92ad08ce28ffdbed6b3f12101d3788
|
|
01e4a960be3e26b87c55509ee1cb44a14946a4169d5cdec046dd05058d995b26"
|
|
|
|
no_generic_pkgconfig_link=yes
|
|
lib32disabled=yes
|
|
nodebug=yes
|
|
nopie=yes # contains tools that are not PIE, enables PIE itself
|
|
|
|
build_options="pulseaudio sndio clang"
|
|
build_options_default="pulseaudio sndio clang"
|
|
|
|
if [ "$build_option_clang" ]; then
|
|
nocross="No proper setup for using clang as cross compiler in void yet"
|
|
elif [ "${XBPS_TARGET_MACHINE%%-musl}" = "aarch64" ]; then
|
|
broken="Falls apart at runtime when compiled with gcc"
|
|
fi
|
|
|
|
_buildtype=Release
|
|
_is_debug=false
|
|
|
|
CFLAGS="-Wno-unknown-warning-option -fPIC"
|
|
CXXFLAGS="-Wno-unknown-warning-option -fPIC"
|
|
|
|
_apply_patch() {
|
|
local args="$1" pname="$(basename $2)"
|
|
|
|
if [ ! -f ".${pname}_done" ]; then
|
|
msg_normal "$pkgver: patching: ${pname}.\n"
|
|
patch -N $args -i $2
|
|
touch .${pname}_done
|
|
fi
|
|
}
|
|
|
|
_get_chromium_arch() {
|
|
case "$1" in
|
|
x86_64*) echo x64 ;;
|
|
i686*) echo x86 ;;
|
|
arm*) echo arm ;;
|
|
aarch64*) echo arm64 ;;
|
|
ppc64*) echo ppc64 ;;
|
|
ppc*) echo ppc ;;
|
|
mipsel*) echo mipsel ;;
|
|
mips*) echo mips ;;
|
|
*) msg_error "$pkgver: cannot be compiled for ${XBPS_TARGET_MACHINE}.\n" ;;
|
|
esac
|
|
}
|
|
|
|
post_extract() {
|
|
ln -s chromium-$_chromiumver src
|
|
mkdir -p src/third_party/
|
|
ln -s ../../node-$_nodever src/third_party/electron_node
|
|
ln -s ../electron-${version} src/electron
|
|
|
|
}
|
|
post_patch() {
|
|
cd $wrksrc
|
|
for x in $FILESDIR/patches/*; do
|
|
case "${x##*/}" in
|
|
electron*.patch)
|
|
cd src/electron
|
|
_apply_patch -p1 "$x"
|
|
cd "$wrksrc";;
|
|
esac
|
|
done
|
|
|
|
# Sigh, electron uses git am...
|
|
if [ ! -f ".electron_patches_done" ]; then
|
|
python2 src/electron/script/list_patch_targets.py src/electron/patches/config.json | while read -r repopath; do
|
|
cd "$wrksrc"/"$repopath"
|
|
git init -q
|
|
git config "gc.auto" 0
|
|
if [ "$repopath" != "src" ]; then
|
|
echo "/${repopath#src/}" >> "$wrksrc/$build_wrksrc/.gitignore"
|
|
fi
|
|
git add .
|
|
git -c 'user.name=Electron build' -c 'user.email=electron@ebuild' \
|
|
commit -q -m "." || true
|
|
done
|
|
cd $wrksrc
|
|
python2 src/electron/script/apply_all_patches.py src/electron/patches/config.json
|
|
touch .electron_patches_done
|
|
fi
|
|
|
|
for x in $FILESDIR/patches/*; do
|
|
case "${x##*/}" in
|
|
chromium*.patch)
|
|
cd src
|
|
_apply_patch -p1 "$x"
|
|
cd "$wrksrc";;
|
|
esac
|
|
done
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
for x in $FILESDIR/musl-patches/*; do
|
|
case "${x##*/}" in
|
|
chromium*.patch)
|
|
cd src
|
|
_apply_patch -p1 "$x"
|
|
cd "$wrksrc";;
|
|
electron*.patch)
|
|
cd src/electron
|
|
_apply_patch -p1 "$x"
|
|
cd "$wrksrc";;
|
|
esac
|
|
done
|
|
fi
|
|
if [ "$build_option_sndio" ]; then
|
|
mkdir -p ${wrksrc}/${build_wrksrc}/media/audio/{sndio,openbsd}
|
|
cp ${FILESDIR}/sndio-files/sndio_*put.* \
|
|
${wrksrc}/${build_wrksrc}/media/audio/sndio
|
|
cp ${FILESDIR}/sndio-files/audio_manager_openbsd.* \
|
|
${wrksrc}/${build_wrksrc}/media/audio/openbsd
|
|
for f in "${FILESDIR}"/sndio-patches/*.patch; do
|
|
cd src
|
|
_apply_patch -p0 "$f"
|
|
cd "$wrksrc"
|
|
done
|
|
fi
|
|
}
|
|
|
|
pre_configure() {
|
|
cd "$wrksrc/$build_wrksrc"
|
|
|
|
# https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/9JX1N2nf4PU/discussion
|
|
touch chrome/test/data/webui/i18n_process_css_test.html
|
|
# Use the file at run time instead of effectively compiling it in
|
|
sed 's|//third_party/usb_ids/usb.ids|/usr/share/hwdata/usb.ids|g' \
|
|
-i services/device/public/cpp/usb/BUILD.gn
|
|
|
|
mkdir -p third_party/node/linux/node-linux-x64/bin
|
|
ln -s /usr/bin/node third_party/node/linux/node-linux-x64/bin/
|
|
|
|
# reusable system library settings
|
|
local use_system="
|
|
ffmpeg
|
|
flac
|
|
fontconfig
|
|
freetype
|
|
harfbuzz-ng
|
|
libdrm
|
|
libevent
|
|
libjpeg
|
|
libpng
|
|
libwebp
|
|
libxml
|
|
libxslt
|
|
opus
|
|
re2
|
|
snappy
|
|
yasm
|
|
"
|
|
for _lib in $use_system libjpeg_turbo; do
|
|
msg_normal "Removing buildscripts for system provided $_lib\n"
|
|
find -type f -path "*third_party/$_lib/*" \
|
|
\! -path "*third_party/$_lib/chromium/*" \
|
|
\! -path "*third_party/$_lib/google/*" \
|
|
\! -path './base/third_party/icu/*' \
|
|
\! -path './third_party/pdfium/third_party/freetype/include/pstables.h' \
|
|
\! -path './third_party/harfbuzz-ng/utils/hb_scoped.h' \
|
|
\! -path './third_party/yasm/run_yasm.py' \
|
|
\! -regex '.*\.\(gn\|gni\|isolate\|py\)' \
|
|
-delete
|
|
done
|
|
|
|
|
|
msg_normal "Replacing gn files\n"
|
|
python2 build/linux/unbundle/replace_gn_files.py --system-libraries \
|
|
$use_system
|
|
third_party/libaddressinput/chromium/tools/update-strings.py
|
|
}
|
|
|
|
do_configure() {
|
|
local target_arch="$(_get_chromium_arch ${XBPS_TARGET_MACHINE})"
|
|
local host_arch="$(_get_chromium_arch ${XBPS_MACHINE})"
|
|
# the build system will set march for use, adding it to cflags will break builds
|
|
export CXXFLAGS=$( shopt -s extglob; echo ${CXXFLAGS/-march=*([^ ])} )
|
|
export CFLAGS=$( shopt -s extglob; echo ${CFLAGS/-march=*([^ ])} )
|
|
local conf=()
|
|
cd third_party/electron_node
|
|
if [ "$CROSS_BUILD" ]; then
|
|
conf_args=" --dest-cpu=${target_arch} --cross-compiling"
|
|
fi
|
|
./configure --prefix=/usr \
|
|
--shared-zlib \
|
|
--shared-libuv \
|
|
--shared-openssl \
|
|
--shared-cares \
|
|
--openssl-use-def-ca-store \
|
|
--without-npm \
|
|
--without-dtrace \
|
|
--without-bundled-v8 \
|
|
${conf_args}
|
|
|
|
cd "$wrksrc/$build_wrksrc"/electron
|
|
yarn install
|
|
cd "$wrksrc/$build_wrksrc"
|
|
|
|
if [ "$build_option_clang" ]; then
|
|
export CC=clang
|
|
export CXX=clang++
|
|
export HOST_CC=clang
|
|
export HOST_CXX=clang++
|
|
else
|
|
export CXXFLAGS="$CXXFLAGS -fpermissive"
|
|
export BUILD_CXXFLAGS="$BUILD_CXXFLAGS -fpermissive"
|
|
export BUILD_AR="$AR_host"
|
|
export BUILD_NM="$NM_host"
|
|
fi
|
|
|
|
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: These are for Void Linux use ONLY.
|
|
conf+=(
|
|
'google_api_key="AIzaSyA9gWazKaHaNIPPg2hrMj6_ZSG8AFmq738"'
|
|
'google_default_client_id="126659149423-hoo6ickbk3p1u2qjsdsp0ddciurfvb4t.apps.googleusercontent.com"'
|
|
'google_default_client_secret="_ozIx2D-DKm_se_2NPwV4l5b"'
|
|
)
|
|
|
|
conf+=(
|
|
'blink_symbol_level=0'
|
|
'clang_use_chrome_plugins=false'
|
|
'closure_compile=true'
|
|
'custom_toolchain="//build/toolchain/linux/unbundle:default"'
|
|
)
|
|
if [ "$CROSS_BUILD" ]; then
|
|
conf+=(
|
|
'host_toolchain="//build/toolchain/linux/unbundle:host"'
|
|
'v8_snapshot_toolchain="//build/toolchain/linux/unbundle:host"'
|
|
"host_pkg_config=\"$PKG_CONFIG_FOR_BUILD\""
|
|
"pkg_config=\"$PKG_CONFIG\""
|
|
)
|
|
else
|
|
conf+=(
|
|
'host_toolchain="//build/toolchain/linux/unbundle:default"'
|
|
'v8_snapshot_toolchain="//build/toolchain/linux/unbundle:default"'
|
|
)
|
|
fi
|
|
if [ "$build_option_sndio" ]; then
|
|
conf+=(
|
|
'use_sndio=true'
|
|
)
|
|
fi
|
|
conf+=(
|
|
'enable_hangout_services_extension=true'
|
|
'enable_nacl_nonsfi=false'
|
|
'enable_nacl=false'
|
|
'enable_precompiled_headers=false'
|
|
'fatal_linker_warnings=false'
|
|
'ffmpeg_branding="Chrome"'
|
|
'fieldtrial_testing_like_official_build=true'
|
|
'gold_path="/usr/bin/ld.gold"'
|
|
'icu_use_data_file=true'
|
|
"is_clang=$(vopt_if clang true false)"
|
|
'is_component_build=false'
|
|
"is_debug=$_is_debug"
|
|
'is_desktop_linux=true'
|
|
'linux_use_bundled_binutils=false'
|
|
'proprietary_codecs=true'
|
|
'symbol_level=0'
|
|
'treat_warnings_as_errors=false'
|
|
'use_allocator_shim=false'
|
|
'use_allocator="none"'
|
|
'use_cups=true'
|
|
'use_custom_libcxx=false'
|
|
'use_gnome_keyring=false'
|
|
'use_gold=false'
|
|
'use_lld=false'
|
|
"use_pulseaudio=$(vopt_if pulseaudio 'true' 'false')"
|
|
'use_sysroot=false'
|
|
'use_system_harfbuzz=true'
|
|
"target_cpu=\"$target_arch\""
|
|
"host_cpu=\"$host_arch\""
|
|
'import("//electron/build/args/release.gn")'
|
|
)
|
|
|
|
msg_normal "Bootstrapping GN\n"
|
|
CC="${CC_FOR_BUILD:-$CC}" CXX="${CXX_FOR_BUILD:-$CXX}" LD="${LD_FOR_BUILD:-$LD}" \
|
|
CFLAGS="${CFLAGS_FOR_BUILD:-$CFLAGS}" CXXFLAGS="${CXXFLAGS_FOR_BUILD:-$CXXFLAGS}" \
|
|
LDFLAGS="${XBPS_LDFLAGS}" \
|
|
python2 tools/gn/bootstrap/bootstrap.py -s -v --skip-generate-buildfiles
|
|
|
|
msg_normal "Configuring build\n"
|
|
out/Release/gn gen out/$_buildtype --args="${conf[*]}"
|
|
}
|
|
|
|
do_build() {
|
|
export CXXFLAGS=$( shopt -s extglob; echo ${CXXFLAGS/-march=*([^ ])} )
|
|
export CFLAGS=$( shopt -s extglob; echo ${CFLAGS/-march=*([^ ])} )
|
|
if [ "$build_option_clang" ]; then
|
|
export CC=clang
|
|
export CXX=clang++
|
|
export HOST_CC=clang
|
|
export HOST_CXX=clang++
|
|
else
|
|
export BUILD_CXXFLAGS="$BUILD_CXXFLAGS -fpermissive"
|
|
export CXXFLAGS="$CXXFLAGS -fpermissive"
|
|
export BUILD_AR="$AR_host"
|
|
export BUILD_NM="$NM_host"
|
|
fi
|
|
msg_normal "Ninja turtles GO!\n"
|
|
ninja ${makejobs} -C out/$_buildtype electron third_party/electron_node:headers
|
|
# finish rest of the build
|
|
strip -s out/$_buildtype/electron
|
|
ninja ${makejobs} -C out/$_buildtype electron_dist_zip
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir /usr/lib/$pkgname
|
|
vmkdir /usr/include/$pkgname
|
|
bsdtar -xf out/$_buildtype/dist.zip -C "$DESTDIR/usr/lib/$pkgname"
|
|
|
|
chmod u+s "$DESTDIR/usr/lib/$pkgname/chrome-sandbox"
|
|
|
|
cp out/$_buildtype/gen/node_headers.tar.gz "$DESTDIR"/usr/include/$pkgname
|
|
|
|
vlicense ${wrksrc}/src/LICENSE chromium.LICENSE
|
|
vlicense ${wrksrc}/src/electron/LICENSE electron.LICENSE
|
|
vlicense ${wrksrc}/src/third_party/electron_node/LICENSE node.LICENSE
|
|
|
|
vmkdir /usr/bin
|
|
ln -s ../lib/$pkgname/electron "$DESTDIR"/usr/bin/$pkgname
|
|
}
|