Skip to content

Instantly share code, notes, and snippets.

@buttercutter
Created June 14, 2018 13:16
Show Gist options
  • Save buttercutter/eaebbca6c440ed61f3d02f7517cbb01f to your computer and use it in GitHub Desktop.
Save buttercutter/eaebbca6c440ed61f3d02f7517cbb01f to your computer and use it in GitHub Desktop.
Arch Linux installation PKGBUILD for https://github.com/YosysHQ/SymbiYosys
# 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