2020-08-16 18:25:49 +00:00
|
|
|
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
2017-10-12 01:37:43 +00:00
|
|
|
# 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
|
2021-07-26 13:55:04 +00:00
|
|
|
pkgver=0.59.0
|
2021-07-26 13:49:06 +00:00
|
|
|
pkgrel=2
|
2017-10-12 01:37:43 +00:00
|
|
|
pkgdesc='High productivity build system'
|
2019-02-15 19:19:34 +00:00
|
|
|
url='https://mesonbuild.com/'
|
2017-10-12 01:37:43 +00:00
|
|
|
arch=('any')
|
|
|
|
license=('Apache')
|
2018-09-24 18:20:13 +00:00
|
|
|
depends=('python-setuptools' 'ninja')
|
2019-04-29 22:57:40 +00:00
|
|
|
checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt5-base' 'git' 'cython'
|
2018-07-03 15:50:49 +00:00
|
|
|
'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 'python-gobject' 'gobject-introspection'
|
2018-01-28 14:35:46 +00:00
|
|
|
'itstool' 'gtk3' 'java-environment=8' 'gtk-doc' 'llvm' 'clang' 'sdl2' 'graphviz'
|
2018-07-03 15:50:49 +00:00
|
|
|
'doxygen' 'vulkan-validation-layers' 'openssh' 'mercurial' 'gtk-sharp-2' 'qt5-tools'
|
2020-03-30 13:22:42 +00:00
|
|
|
'libwmf' 'valgrind' 'cmake' 'netcdf-fortran' 'openmpi' 'nasm' 'gnustep-base' 'libelf'
|
2021-05-11 14:44:49 +00:00
|
|
|
'python-pytest-xdist' 'python2-setuptools' 'ldc' 'rust-bindgen' 'cuda' 'hotdoc')
|
2020-10-30 13:53:10 +00:00
|
|
|
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver/rc/.rc}/meson-${pkgver}.tar.gz{,.asc}
|
2021-07-26 13:49:06 +00:00
|
|
|
0001-gnome-Always-pass-absolute-L-paths-to-g-ir-scanner.patch
|
2019-06-17 23:24:32 +00:00
|
|
|
skip-test.diff
|
2018-09-23 21:11:22 +00:00
|
|
|
arch-meson)
|
2021-07-26 13:55:04 +00:00
|
|
|
sha512sums=('a620f4dd192bd31da867d3deb162592425c0bdb4a6169d43f81ba8d3c10296d746e739c294a7908a350c383a90beedef03f3c75b549bddc67c0ee7093fa27d92'
|
2017-10-12 01:37:43 +00:00
|
|
|
'SKIP'
|
2021-07-26 13:49:06 +00:00
|
|
|
'82b7d3866d327ec05efea2e16097b04a3fd99e0f7de522e4911df3d44f0e6f36c8293d2366fcab2b7a0107eed58ec61c808a87688d2b7d28902f2a355f5c5a91'
|
2021-05-11 14:44:49 +00:00
|
|
|
'a40e3be7a4ea7048cbbab59d28fb355debdfcdc5e45244aad65ab57fa222f4a2cf3165f28cc7e1dba893a162de9c7563ef0e155fa6a77960c4d02ef622313ace'
|
2019-02-06 00:29:20 +00:00
|
|
|
'278f5e4de3aa1170d9b4f9f212985d664f44d90ffec727febeeea1ed570046c6469558a5d123a41bf4c2fdf99dbe7832515b06f1ace423c63e2e95ba6d0ef235')
|
2021-01-06 14:52:10 +00:00
|
|
|
validpgpkeys=('19E2D6D9B46D8DAA6288F877C24E631BABB1FE70') # Jussi Pakkanen <jpakkane@gmail.com>
|
2017-10-12 01:37:43 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
2018-08-25 21:51:32 +00:00
|
|
|
|
2021-07-26 13:49:06 +00:00
|
|
|
# Fix introspecting libraries that are also installed
|
|
|
|
patch -Np1 -i ../0001-gnome-Always-pass-absolute-L-paths-to-g-ir-scanner.patch
|
|
|
|
|
2019-06-17 23:24:32 +00:00
|
|
|
# Our containers do not allow sanitizers to run
|
|
|
|
patch -Np1 -i ../skip-test.diff
|
2017-10-12 01:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
python setup.py build
|
|
|
|
}
|
|
|
|
|
2018-01-28 14:35:46 +00:00
|
|
|
check() (
|
2017-10-12 01:37:43 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
2019-04-19 23:56:19 +00:00
|
|
|
export LC_CTYPE=en_US.UTF-8 CPPFLAGS= CFLAGS= CXXFLAGS= LDFLAGS=
|
2018-01-28 14:35:46 +00:00
|
|
|
./run_tests.py
|
|
|
|
)
|
2017-10-12 01:37:43 +00:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
|
2017-12-10 20:06:18 +00:00
|
|
|
|
2018-03-22 01:00:32 +00:00
|
|
|
install -d "${pkgdir}/usr/share/vim/vimfiles"
|
2018-10-20 01:43:03 +00:00
|
|
|
cp -rt "${pkgdir}/usr/share/vim/vimfiles" data/syntax-highlighting/vim/*/
|
2018-03-06 22:26:27 +00:00
|
|
|
|
2020-04-01 00:37:30 +00:00
|
|
|
install -Dt "${pkgdir}/usr/share/bash-completion/completions" -m644 data/shell-completions/bash/*
|
2017-12-10 20:06:18 +00:00
|
|
|
install -Dt "${pkgdir}/usr/share/emacs/site-lisp" -m644 data/syntax-highlighting/emacs/*
|
|
|
|
install -Dt "${pkgdir}/usr/share/zsh/site-functions" -m644 data/shell-completions/zsh/*
|
2017-10-12 01:37:43 +00:00
|
|
|
|
|
|
|
# Arch packaging helper
|
|
|
|
install -D ../arch-meson -t "${pkgdir}/usr/bin"
|
|
|
|
}
|
|
|
|
|
2021-05-11 14:44:49 +00:00
|
|
|
# vim: sw=2 et:
|