aur/PKGBUILD
2024-12-12 01:00:44 +01:00

38 lines
742 B
Bash

# Maintainer: Aki-nyan <aur@catgirl.link>
pkgname=eqy-nightly
pkgver=20241212_v0.48
pkgrel=1
epoch=1
pkgdesc="Equivalence Checking with Yosys"
arch=("any")
url="https://github.com/YosysHQ/eqy"
license=("custom:ISC")
groups=()
options=("!strip")
depends=("yosys-nightly" "sby-nightly" "python" "python-click")
optdepends=()
makedepends=("git" "gcc" "yosys-nightly")
provides=("eqy")
conflicts=()
replaces=()
source=(
"eqy::git+https://github.com/YosysHQ/eqy.git#commit=93bf4df"
)
sha256sums=(
"SKIP"
)
_PREFIX="/usr"
build() {
cd "${srcdir}/eqy"
make PREFIX="${_PREFIX}"
}
package() {
cd "${srcdir}/eqy"
make PREFIX="${_PREFIX}" DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/eqy/LICENSE"
cd ..
}