PKGBUILDs/extra/gn/PKGBUILD
2024-02-11 16:36:36 +00:00

51 lines
1.4 KiB
Bash

# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - strip -fstack-clash-protection from CFLAGS
pkgname=gn
pkgver=0.2143.a2e2717e
_commit=a2e2717ea670249a34b0de4b3e54f268d320bdfa
pkgrel=1
pkgdesc="Meta-build system that generates build files for Ninja"
arch=('x86_64')
url="https://gn.googlesource.com/gn/"
license=('BSD')
depends=('gcc-libs')
makedepends=('clang' 'ninja' 'python' 'git')
source=(git+https://gn.googlesource.com/gn#commit=$_commit)
sha256sums=('SKIP')
pkgver() {
cd $pkgname
echo 0.$(git rev-list --count initial-commit..).$(git rev-parse --short=8 HEAD)
}
build() {
cd $pkgname
# clang-13: error: argument unused during compilation: '-fstack-clash-protection' [-Werror,-Wunused-command-line-argument]
CFLAGS=${CFLAGS/-fstack-clash-protection/}
CXXFLAGS=${CXXFLAGS/-fstack-clash-protection/}
./build/gen.py
ninja -C out
}
check() {
cd $pkgname
./out/gn_unittests
}
package() {
cd $pkgname
install -D out/gn "$pkgdir/usr/bin/gn"
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" docs/*
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
mkdir -p "$pkgdir/usr/share/vim/vimfiles"
cp -r misc/vim/{autoload,ftdetect,ftplugin,syntax} \
"$pkgdir/usr/share/vim/vimfiles/"
install -Dm644 -t "$pkgdir/usr/share/emacs/site-lisp" misc/emacs/gn-mode.el
}
# vim:set ts=2 sw=2 et: