diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/freehdl |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/freehdl')
-rw-r--r-- | community/freehdl/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/freehdl/PKGBUILD b/community/freehdl/PKGBUILD new file mode 100644 index 000000000..d0ca0d067 --- /dev/null +++ b/community/freehdl/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 43045 2011-03-23 21:44:42Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Neil Darlow <neil@darlow.co.uk> +# Contributor: Jens Maucher <defcon@archlinux.us> + +pkgname=freehdl +pkgver=0.0.8 +_qucsver=0.0.16 +pkgrel=1 +pkgdesc='An open-source (C++ generating) VHDL simulator' +arch=('i686' 'x86_64') +url='http://freehdl.seul.org' +license=('GPL') +depends=('gcc-libs' 'libtool' 'perl') +makedepends=('bison' 'flex' 'gawk' 'pkgconfig') +optdepends=('gtkwave: to view output when run standalone') +options=(!libtool) +source=(http://downloads.sourceforge.net/project/qucs/qucs/${_qucsver}/freehdl-$pkgver.tar.gz) +md5sums=('aa1382b8b5c6a972e9652c648a9278b5') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make + make DESTDIR=$pkgdir install +} |