CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
1e333006f4d8586d8e0b23cf69f1afb54d9af235
[ports/opt-arm64.git] / meson / Pkgfile
1 # Description: High productivity build system.
2 # URL: https://mesonbuild.com/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: python3-setuptools
6
7 name=meson
8 version=0.61.2
9 release=1
10 source=(https://github.com/mesonbuild/meson/releases/download/$version/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 /usr/bin/python3 setup.py build
16
17 /usr/bin/python3 setup.py install \
18 --prefix=/usr --root=$PKG --optimize=1 --skip-build
19
20 install -d $PKG/usr/share/vim/vimfiles
21 cp -rt $PKG/usr/share/vim/vimfiles data/syntax-highlighting/vim/*/
22 install -m 0644 -Dt $PKG/usr/share/bash-completion/completions data/shell-completions/bash/*
23 install -m 0644 -Dt $PKG/usr/share/zsh/site-functions data/shell-completions/zsh/*
24 }