Created
June 14, 2018 13:16
-
-
Save buttercutter/eaebbca6c440ed61f3d02f7517cbb01f to your computer and use it in GitHub Desktop.
Arch Linux installation PKGBUILD for https://github.com/YosysHQ/SymbiYosys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: promach | |
_gitname=SymbiYosys | |
pkgname=${_gitname}-git | |
pkgver=r114.983f066 | |
pkgrel=1 | |
pkgdesc="SymbiYosys (sby) is a front-end driver program for Yosys-based formal hardware verification flows" | |
arch=('x86_64') | |
url="https://github.com/cliffordwolf/SymbiYosys.git" | |
license=('GPL') | |
depends=('yosys') | |
makedepends=() | |
source=('git+https://github.com/cliffordwolf/SymbiYosys.git') | |
md5sums=('SKIP') | |
pkgver() { | |
cd "${_gitname}" | |
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
package() { | |
cd "${_gitname}" | |
make PREFIX=/usr DESTDIR="$pkgdir" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment