mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
50 lines
1.4 KiB
Bash
50 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.2050.9ef32177
|
|
_commit=9ef321772ecc161937db69acb346397e0ccc484d
|
|
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:
|