blob: 14173cfbe629c88db0e3be1c279139a50b1412aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer: poscat
_gittag="v0.0-3843-g106f651e"
_tardir="verible-${_gittag/v/}"
pkgname=verible
pkgver="$(echo ${_gittag} | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/v//g')"
pkgrel=2
pkgdesc="Suite of SystemVerilog developer tools. Including a style-linter, indexer, formatter, and language server"
arch=('x86_64' 'aarch64')
url='https://github.com/chipsalliance/verible'
license=('Apache 2.0')
depends=('bash')
makedepends=('python' 'bazel' 'git' 'm4' 'flex' 'bison')
provides=('verible')
conflicts=('verible-git' 'verible-bin')
source=(
"verible-${pkgver}.tar.gz::https://github.com/chipsalliance/verible/archive/refs/tags/${_gittag}.tar.gz"
)
sha256sums=('76663e65ef47c936ac445b0b933e629b8bdc2efbf6150d2d4434a37e53325114')
build() {
cd "${srcdir:?}/${_tardir}" || (
echo -e "\E[1;31mCan't change working directory to ${srcdir}/verible! Build Failed!\E[0m"
exit 1
)
bazel build -c opt --//bazel:use_local_flex_bison //:install-binaries
}
check() {
cd "${srcdir:?}/${_tardir}" || (
echo -e "\E[1;31mCan't change working directory to ${srcdir}/verible! Check Failed!\E[0m"
exit 1
)
bazel test -c opt --//bazel:use_local_flex_bison //...
}
package() {
cd "${srcdir:?}/${_tardir}" || (
echo -e "\E[1;31mCan't change working directory to ${srcdir}/verible! Package Failed!\E[0m"
exit 1
)
bazel run -c opt --//bazel:use_local_flex_bison //:install -- "${pkgdir:?}/usr/bin"
}
|