updated on Sun Jan 22 08:00:21 UTC 2012
[aur-mirror.git] / mvsis / PKGBUILD
bloba88910fd4bbaaea1aec360f4b52805f465c01e02
1 # Maintainer: SpepS <dreamspepser at yahoo dot it>
3 pkgname=mvsis
4 pkgver=3.0
5 pkgrel=1
6 pkgdesc="Fast binary synthesis algorithms, technology mapping and resynthesis procedures and engines for combinational and sequential equivalence checking."
7 arch=('i686' 'x86_64')
8 url="http://embedded.eecs.berkeley.edu/Respep/Research/mvsis/"
9 license=('GPL')
10 depends=('libbsd')
11 source=("${url}release/$pkgname-$pkgver.tar.gz"
12         "$pkgname.patch")
13 md5sums=('76a813802c54962efb45d77c39957111'
14          '1dad1468491d5a3a4b4f17cade545fab')
16 build() {
17   cd "$srcdir/$pkgname-1.3"
19   # add support for 64bit
20   # and other compatibility fixes
21   patch -p1 -i ../$pkgname.patch
23   ./configure --prefix=/usr
24   make
27 package() {
28   cd "$srcdir/$pkgname-1.3"
30   # bin
31   install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
33   # examples
34   install -d "$pkgdir/usr/share/$pkgname/examples"
35   install -Dm644 examples/*.* "$pkgdir/usr/share/$pkgname/examples"
38 # vim:set ts=2 sw=2 et: