opt/meson/Pkgfile

24 lines
735 B
Plaintext
Raw Normal View History

2017-08-16 11:23:04 +02:00
# Description: High productivity build system.
2020-06-19 00:55:09 +02:00
# URL: https://mesonbuild.com/
2017-08-16 11:23:04 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python3-setuptools
2017-08-16 11:23:04 +02:00
name=meson
2020-11-13 13:52:52 +01:00
version=0.56.0
2017-08-16 11:23:04 +02:00
release=1
source=(https://github.com/mesonbuild/meson/releases/download/$version/$name-$version.tar.gz)
build() {
cd $name-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install \
2020-11-13 13:52:52 +01:00
--prefix=/usr --root=$PKG --optimize=1 --skip-build
install -d $PKG/usr/share/vim/vimfiles
cp -rt $PKG/usr/share/vim/vimfiles data/syntax-highlighting/vim/*/
install -Dt $PKG/usr/share/bash-completion/completions -m644 data/shell-completions/bash/*
install -Dt $PKG/usr/share/zsh/site-functions -m644 data/shell-completions/zsh/*
2017-08-16 11:23:04 +02:00
}