mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
120 lines
3.1 KiB
Bash
120 lines
3.1 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.1.0
|
|
pkgrel=1
|
|
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
|
|
0001-Skip-broken-tests.patch
|
|
arch-meson
|
|
)
|
|
b2sums=('149dedc0e49b72682fa053f27f9a6c2543362539861b4b79ce65ecf4d913e221ac2d63f3b9aa350bd7622851c73be418b804ae1131dd27607eb01218e0204a5e'
|
|
'SKIP'
|
|
'6f8ec9ccee50e8e33c8c289bae0f33887dc998b5753c373afddc050fa2561172f34ec573f701ed1c5c1715fabcaec2daf5d1979709546816a3813396f34178d5'
|
|
'afc89e9f7c8c0af12ab86c7030c17d045eb1b0758ea813d86fc88f83963795a6a9abe9a45e11829f15f5c7daf49fcc0238c31881060d16e2a0e93197f9215e1d'
|
|
'742e2c16c6c464e939f68ec7f58951836a75a0fc0170ada25826e7dbc7191bd289f66bfe683941a5ff98d102fd54aeda2c407e9d2ab4276cf607a82ab948093b'
|
|
'801ad7689aabd2861c760d6001ce2e84c3d5aaed867b087bc1699e7c15d914ee26c9d855999f389d28b4765f081523a1468755768bc0163185f132e157ecced1')
|
|
validpgpkeys=(
|
|
19E2D6D9B46D8DAA6288F877C24E631BABB1FE70 # Jussi Pakkanen <jpakkane@gmail.com>
|
|
)
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
patch -Np1 -i ../0001-Skip-broken-tests.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"
|
|
}
|
|
|
|
# vim:set sw=2 sts=-1 et:
|