mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
37 lines
754 B
Text
37 lines
754 B
Text
# Maintainer: Aki-nyan <aur@catgirl.link>
|
|
|
|
pkgname=sby-nightly
|
|
pkgver=@EDA_VER@
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="Front-end for Yosys-based formal verification flows"
|
|
arch=("any")
|
|
url="https://github.com/YosysHQ/sby"
|
|
license=("custom:ISC")
|
|
groups=()
|
|
options=("!strip")
|
|
depends=("yosys-nightly" "python" "python-click")
|
|
optdepends=(
|
|
"bitwuzla"
|
|
"boolector"
|
|
"yices"
|
|
"z3"
|
|
)
|
|
provides=("sby" "symbiyosys")
|
|
makedepends=("git")
|
|
conflicts=("symbiyosys-git")
|
|
replaces=("symbiyosys-nightly")
|
|
source=(
|
|
"sby::git+https://github.com/YosysHQ/sby.git#commit=@EDA_HASH@"
|
|
)
|
|
sha256sums=(
|
|
"SKIP"
|
|
)
|
|
|
|
_PREFIX="/usr"
|
|
package() {
|
|
cd "${srcdir}/sby"
|
|
make PREFIX="${_PREFIX}" DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/sby/LICENSE"
|
|
cd ..
|
|
}
|