125 lines
4.3 KiB
Bash
125 lines
4.3 KiB
Bash
# Maintainer: Haroogan <Haroogan@gmail.com>
|
|
# Maintainer: Oscar Fuentes <ofv@wanadoo.es>
|
|
|
|
_enable_jit=$([[ "${MSYSTEM}" == CLANG* ]] || echo yes)
|
|
_sanity_check=$([[ "${MSYSTEM}" != MINGW* ]] || echo yes)
|
|
|
|
_realname=emacs
|
|
pkgbase=mingw-w64-${_realname}
|
|
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
|
|
pkgver=29.2
|
|
pkgrel=3
|
|
pkgdesc="The extensible, customizable, self-documenting, real-time display editor (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url="https://www.gnu.org/software/${_realname}/"
|
|
msys2_references=(
|
|
'archlinux: emacs'
|
|
"cpe: cpe:/a:gnu:emacs"
|
|
)
|
|
license=('spdx:GPL-3.0-or-later')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-ctags"
|
|
$([[ "$_enable_jit" == "yes" ]] && echo "${MINGW_PACKAGE_PREFIX}-libgccjit")
|
|
"${MINGW_PACKAGE_PREFIX}-zlib"
|
|
"${MINGW_PACKAGE_PREFIX}-xpm-nox"
|
|
"${MINGW_PACKAGE_PREFIX}-freetype"
|
|
"${MINGW_PACKAGE_PREFIX}-harfbuzz"
|
|
"${MINGW_PACKAGE_PREFIX}-jansson"
|
|
"${MINGW_PACKAGE_PREFIX}-gnutls"
|
|
"${MINGW_PACKAGE_PREFIX}-tree-sitter"
|
|
"${MINGW_PACKAGE_PREFIX}-libwinpthread")
|
|
optdepends=("${MINGW_PACKAGE_PREFIX}-giflib"
|
|
"${MINGW_PACKAGE_PREFIX}-libjpeg-turbo"
|
|
"${MINGW_PACKAGE_PREFIX}-libpng"
|
|
"${MINGW_PACKAGE_PREFIX}-librsvg"
|
|
"${MINGW_PACKAGE_PREFIX}-libtiff"
|
|
"${MINGW_PACKAGE_PREFIX}-libxml2")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-autotools"
|
|
"${optdepends[@]}")
|
|
# Don't zip info files because the built-in info reader uses gzip to
|
|
# decompress them. gzip is not available as a mingw binary.
|
|
options=('!zipman')
|
|
source=("https://ftp.gnu.org/gnu/${_realname}/${_realname}-${pkgver}.tar.xz"{,.sig}
|
|
"001-ucrt.patch"
|
|
"002-clang-fixes.patch"
|
|
"003-aarch64-fixes.patch"
|
|
"emacs-ARM64.manifest")
|
|
# source=("https://alpha.gnu.org/gnu/${_realname}/pretest/${_realname}-${pkgver}.tar.xz"{,.sig})
|
|
sha256sums=('7d3d2448988720bf4bf57ad77a5a08bf22df26160f90507a841ba986be2670dc'
|
|
'SKIP'
|
|
'e1347064ec30094e21679764f784fa7557738946485359041473e6e9d7f3c3dc'
|
|
'd8732584a8f3bfd0badbd16d15384b7098e25c5df48632beb02d35f6050c358b'
|
|
'd128982d87af1e524ae809147613168153f0e5c1efb0ef633793df47b762c9e1'
|
|
'bfe64602dbeeec85799c1156ca4f3837fdac42a076e83a4221768db3417220e1')
|
|
validpgpkeys=('28D3BED851FDF3AB57FEF93C233587A47C207910'
|
|
'17E90D521672C04631B1183EE78DAE0F3115E06B'
|
|
'E6C9029C363AD41D787A8EBB91C1262F01EB8D39'
|
|
'CEA1DE21AB108493CC9C65742E82323B8F4353EE')
|
|
|
|
prepare() {
|
|
cp "${srcdir}/emacs-ARM64.manifest" "${_realname}-${pkgver}/nt"
|
|
|
|
cd "${_realname}-${pkgver}"
|
|
|
|
patch -Np1 -i "${srcdir}/001-ucrt.patch"
|
|
patch -Np1 -i "${srcdir}/002-clang-fixes.patch"
|
|
patch -Np1 -i "${srcdir}/003-aarch64-fixes.patch"
|
|
|
|
./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
mkdir -p "build-${MSYSTEM}" && cd "build-${MSYSTEM}"
|
|
|
|
_extra_cfg=""
|
|
if [[ "$_enable_jit" == "yes" ]] ; then
|
|
_extra_cfg="$_extra_cfg --with-native-compilation=aot"
|
|
fi
|
|
|
|
# Required for nanosleep with clang
|
|
export LDFLAGS="${LDFLAGS} -lpthread"
|
|
# -D_FORTIFY_SOURCE breaks build
|
|
CFLAGS=${CFLAGS//"-Wp,-D_FORTIFY_SOURCE=2"}
|
|
# -foptimize-sibling-calls breaks native compilation (GCC 13.1)
|
|
CFLAGS+=" -fno-optimize-sibling-calls"
|
|
|
|
../${_realname}-${pkgver}/configure \
|
|
--prefix="${MINGW_PREFIX}" \
|
|
--host="${MINGW_CHOST}" \
|
|
--build="${MINGW_CHOST}" \
|
|
--with-modules \
|
|
--without-dbus \
|
|
--without-compress-install \
|
|
--with-tree-sitter \
|
|
$_extra_cfg
|
|
|
|
# --without-compress-install is needed because we don't have gzip in
|
|
# the mingw binaries and it is also required by native compilation.
|
|
|
|
# 001-ucrt.patch breaks stdout, causing make sanity-check to fail
|
|
if [[ "$_sanity_check" == "yes" ]] ; then
|
|
make
|
|
else
|
|
make actual-all
|
|
fi
|
|
}
|
|
|
|
package() {
|
|
cd "build-${MSYSTEM}"
|
|
make DESTDIR="${pkgdir}" install
|
|
rm -f "${pkgdir}${MINGW_PREFIX}/bin/ctags.exe"
|
|
rm -f "${pkgdir}${MINGW_PREFIX}/share/man/man1/ctags.1.gz"
|
|
|
|
local dir="${pkgdir}${MINGW_PREFIX}/share/${_realname}"
|
|
dir="${dir}/$(ls -1 ${dir} | grep -E '([0-9]+\.[0-9]+)(\.[0-9]+)?')/src"
|
|
|
|
mkdir -p "${dir}"
|
|
cd "${srcdir}/${_realname}-${pkgver}/src"
|
|
cp *.c *.h *.m "${dir}"
|
|
}
|
|
|
|
# TODO:
|
|
# Patch `shell-file-name' default in the C source code similarly to
|
|
# `source-directory'.
|