mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 07:13:54 +01:00
31 lines
699 B
Bash
31 lines
699 B
Bash
# Maintainer: Aki-nyan <aur@catgirl.link>
|
|
|
|
pkgname=mcy-nightly
|
|
pkgver=20230402_d8f33b0
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc="Mutation Cover with Yosys"
|
|
arch=("any")
|
|
url="https://github.com/YosysHQ/mcy"
|
|
license=("custom:ISC")
|
|
groups=()
|
|
options=("!strip")
|
|
depends=("yosys-nightly" "sby-nightly" "python" "python-click" "qt5-base" "boost-libs")
|
|
optdepends=("python-flask")
|
|
makedepends=("git" "gcc" "cmake" "boost")
|
|
conflicts=()
|
|
replaces=()
|
|
source=(
|
|
"mcy::git+https://github.com/YosysHQ/mcy.git#commit=d8f33b0"
|
|
)
|
|
sha256sums=(
|
|
"SKIP"
|
|
)
|
|
|
|
_PREFIX="/usr"
|
|
package() {
|
|
cd "${srcdir}/mcy"
|
|
make PREFIX="${_PREFIX}" DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/mcy/LICENSE"
|
|
cd ..
|
|
}
|