Bumped mcy-nightly Version to 20230402_d8f33b0

This commit is contained in:
aki-nyan 2023-04-02 20:01:26 +02:00
commit f74b47b1bb
4 changed files with 91 additions and 0 deletions

24
.SRCINFO Normal file
View 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
View file

@ -0,0 +1,5 @@
*
!.gitignore
!PKGBUILD
!PKGBUILD.in
!.SRCINFO

31
PKGBUILD Normal file
View 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
View 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 ..
}