updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / espresso / PKGBUILD
blob9479a912da253d41ddb979b797eb8d8ead7ff8e3
1 # Maintainer: Kyle Temkin <kyle at ktemkin dot com> 
3 pkgname=('espresso')
4 pkgver=1.0
5 pkgrel=1
6 pkgdesc="Heuristic logic minimizer; reduces the amount of gates required for digital circuits."
7 arch=('i686' 'x86_64')
8 url="http://code.google.com/p/eqntott/"
9 license=('MIT')
10 groups=()
11 depends=('glibc')
12 optdepends=('eqntott: equation-based input')
13 source=(http://eqntott.googlecode.com/files/$pkgname-ab-$pkgver.tar.gz)
14 md5sums=('1c60ac344779dc8753f8e0785eafd8ac')
16 build() {
17   cd $srcdir/$pkgname-ab-$pkgver
18   
19   #autogenerate makefile
20   ./configure --prefix=/usr || return 1
21   
22   #build
23   make || return 1
24   
27 package() {
28   cd $srcdir/$pkgname-ab-$pkgver
29   
30   #install
31   make DESTDIR=$pkgdir install || return 1
32   
33   #install licesnse
34   install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"