mirror of
https://github.com/archlinux/aur.git
synced 2026-02-10 23:27:54 +01:00
Bumped mcy-nightly Version to 20230402_d8f33b0
This commit is contained in:
commit
f74b47b1bb
4 changed files with 91 additions and 0 deletions
24
.SRCINFO
Normal file
24
.SRCINFO
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
pkgbase = mcy-nightly
|
||||
pkgdesc = Mutation Cover with Yosys
|
||||
pkgver = 20230402_d8f33b0
|
||||
pkgrel = 1
|
||||
epoch = 1
|
||||
url = https://github.com/YosysHQ/eqy
|
||||
arch = any
|
||||
license = custom:ISC
|
||||
makedepends = git
|
||||
makedepends = gcc
|
||||
makedepends = cmake
|
||||
makedepends = boost
|
||||
depends = yosys-nightly
|
||||
depends = sby-nightly
|
||||
depends = python
|
||||
depends = python-click
|
||||
depends = qt5-base
|
||||
depends = boost-libs
|
||||
optdepends = python-flask
|
||||
options = !strip
|
||||
source = mcy::git+https://github.com/YosysHQ/mcy.git#commit=d8f33b0
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = mcy-nightly
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
*
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!PKGBUILD.in
|
||||
!.SRCINFO
|
||||
31
PKGBUILD
Normal file
31
PKGBUILD
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# 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/eqy"
|
||||
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 ..
|
||||
}
|
||||
31
PKGBUILD.in
Normal file
31
PKGBUILD.in
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: Aki-nyan <aur@catgirl.link>
|
||||
|
||||
pkgname=mcy-nightly
|
||||
pkgver=@MCY_VER@
|
||||
pkgrel=1
|
||||
epoch=1
|
||||
pkgdesc="Mutation Cover with Yosys"
|
||||
arch=("any")
|
||||
url="https://github.com/YosysHQ/eqy"
|
||||
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=@MCY_HASH@"
|
||||
)
|
||||
sha256sums=(
|
||||
"SKIP"
|
||||
)
|
||||
|
||||
_PREFIX="/usr"
|
||||
package() {
|
||||
cd "${srcdir}/mcy"
|
||||
make PREFIX="${_PREFIX}" DESTDIR="${pkgdir}" install
|
||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/mcy/LICENSE"
|
||||
cd ..
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue