mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
138 lines
4.2 KiB
Bash
138 lines
4.2 KiB
Bash
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Contributor: Anatol Pomozov <anatol dot pomozov at gmail>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - disable lto in arch-meson
|
|
|
|
pkgname=meson
|
|
pkgver=1.2.2
|
|
pkgrel=2
|
|
pkgdesc="High productivity build system"
|
|
url="https://mesonbuild.com/"
|
|
arch=(any)
|
|
license=(Apache)
|
|
depends=(
|
|
ninja
|
|
python-tqdm
|
|
python-typing_extensions
|
|
)
|
|
makedepends=(
|
|
python-build
|
|
python-installer
|
|
python-setuptools
|
|
python-wheel
|
|
)
|
|
checkdepends=(
|
|
boost
|
|
clang
|
|
cmake
|
|
cuda
|
|
cython
|
|
doxygen
|
|
gcc-fortran
|
|
gcc-objc
|
|
git
|
|
gmock
|
|
gnustep-base
|
|
gobject-introspection
|
|
graphviz
|
|
gtest
|
|
gtk-doc
|
|
gtk-sharp-2
|
|
gtk3
|
|
gtkmm3
|
|
hotdoc
|
|
itstool
|
|
java-environment=8
|
|
ldc
|
|
libelf
|
|
libwmf
|
|
llvm
|
|
mercurial
|
|
mono
|
|
nasm
|
|
netcdf-fortran
|
|
openmpi
|
|
openssh
|
|
protobuf
|
|
python-gobject
|
|
python-pytest-xdist
|
|
qt5-base
|
|
qt5-tools
|
|
rust
|
|
rust-bindgen
|
|
sdl2
|
|
vala
|
|
valgrind
|
|
vulkan-validation-layers
|
|
wxgtk3
|
|
)
|
|
source=(
|
|
https://github.com/mesonbuild/meson/releases/download/$pkgver/meson-$pkgver.tar.gz{,.asc}
|
|
meson-reference-$pkgver.3::https://github.com/mesonbuild/meson/releases/download/$pkgver/meson-reference.3
|
|
meson-reference-$pkgver.json::https://github.com/mesonbuild/meson/releases/download/$pkgver/reference_manual.json
|
|
arch-meson
|
|
cross-lib32
|
|
native-clang
|
|
0001-Skip-broken-tests.patch
|
|
0002-Use-C-17-for-protobuf-tests.patch
|
|
0003-Revert-rust-apply-global-project-and-environment-C-a.patch
|
|
)
|
|
b2sums=('b355c8e5ab7508fca51dbe5c95eea68f91b995a670ad20eb9b7e93d3c97ad5363afe3fbd39cd554d1a6953a07166851257d16706acc9db6d5265e6452e40a857'
|
|
'SKIP'
|
|
'5c512645bb5017e3e28fc8fbafcc782c55c491a8a2bce7bfda77d23d6d568a449f78e9ccf78d138827c3aad8e88120357c0a65a74adf8b849bd8fa99ea60fb97'
|
|
'698c3c7c0084639185b0869c68a769295848c229cef3a43ea4a4a5ee33e2fb9ab8f60343c6477ca27ad4c7ce9d65bcad89bce7f3ed6d2bf7cf91f71f68dd86ab'
|
|
'211cee61f117fd1d582d7a613a8634f044e9e307791c4154c6da72bccd5f06856801b14bcb26157ee682b5935c48ffd2098a5fabab2232726d7758cf091c07f7'
|
|
'e56c75dd9122d866e8a92381f1f8a3fa268451d13a18b73906c0089601d3e6edf28602b36f40d8a32758e9958a167a1bdccd70283581e19b2ed39863640daf95'
|
|
'7d88929d5a3b49d91c5c9969f19d9b47f3151706526b889515acaeda0141257d5115875ac84832e9ea46f83a7700d673adcc5db84b331cd798c70ae6e90eac1e'
|
|
'c2a1c6ea016fca855b949dba286e966404a2ce44dfc4e55542b201719ab7654c0176a97e1d5b906043ca4cd741dfd2fe3554a520116c26ceb4ba313f78548380'
|
|
'c0154434fefb00aebb66b276c3b871b9ec629adc8f3c5b020a21b4662667c0bdaa2c48c6a7498d0c7ab901bb9c3911bd0bb82fbae5e5f3ae2da006e3849e0ff0'
|
|
'623539918a5a265e521c2bff50e66a4c9d59a684131d32a8f568aa167db6feeaa21627f362bf3bd0995a46960405e9802ddacff251a8a6b85ba3da3eadeb200f')
|
|
validpgpkeys=(
|
|
19E2D6D9B46D8DAA6288F877C24E631BABB1FE70 # Jussi Pakkanen <jpakkane@gmail.com>
|
|
)
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
|
|
# Pass tests
|
|
patch -Np1 -i ../0001-Skip-broken-tests.patch
|
|
patch -Np1 -i ../0002-Use-C-17-for-protobuf-tests.patch
|
|
|
|
# Unbreak Mesa build
|
|
# https://github.com/mesonbuild/meson/issues/12326
|
|
patch -Np1 -i ../0003-Revert-rust-apply-global-project-and-environment-C-a.patch
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
check() (
|
|
cd $pkgname-$pkgver
|
|
export LC_CTYPE=en_US.UTF-8 CPPFLAGS= CFLAGS= CXXFLAGS= LDFLAGS=
|
|
./run_tests.py --failfast
|
|
)
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
|
|
install -d "$pkgdir/usr/share/vim/vimfiles"
|
|
cp -rt "$pkgdir/usr/share/vim/vimfiles" data/syntax-highlighting/vim/*/
|
|
|
|
install -Dm644 data/shell-completions/bash/* -t "$pkgdir/usr/share/bash-completion/completions"
|
|
install -Dm644 data/shell-completions/zsh/* -t "$pkgdir/usr/share/zsh/site-functions"
|
|
|
|
install -Dm644 ../meson-reference-$pkgver.3 "$pkgdir/usr/share/man/man3/meson-reference.3"
|
|
install -Dm644 ../meson-reference-$pkgver.json "$pkgdir/usr/share/doc/$pkgname/reference_manual.json"
|
|
|
|
install -D ../arch-meson -t "$pkgdir/usr/bin"
|
|
|
|
install -Dm644 ../cross-lib32 "$pkgdir/usr/share/meson/cross/lib32"
|
|
install -Dm644 ../native-clang "$pkgdir/usr/share/meson/native/clang"
|
|
}
|
|
|
|
# vim:set sw=2 sts=-1 et:
|