diff options
Diffstat (limited to 'community/qucs')
-rw-r--r-- | community/qucs/ChangeLog | 3 | ||||
-rw-r--r-- | community/qucs/PKGBUILD | 29 |
2 files changed, 32 insertions, 0 deletions
diff --git a/community/qucs/ChangeLog b/community/qucs/ChangeLog new file mode 100644 index 000000000..dba4cf7ec --- /dev/null +++ b/community/qucs/ChangeLog @@ -0,0 +1,3 @@ +2007-06-27 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/qucs/PKGBUILD b/community/qucs/PKGBUILD new file mode 100644 index 000000000..f97ac5164 --- /dev/null +++ b/community/qucs/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 94064 2013-07-13 14:17:21Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Víctor Martínez Romanos <vmromanos@gmail.com> + +pkgname=qucs +pkgver=0.0.17 +pkgrel=1 +pkgdesc="An integrated circuit simulator with a graphical user interface" +arch=('i686' 'x86_64') +url="http://qucs.sourceforge.net" +license=('GPL') +depends=('gcc-libs' 'qt4') +optdepends=('freehdl: to permit digital circuit simulation' + 'asco: to enable circuit optimization' + 'perl') +#source=("http://downloads.sourceforge.net/project/qucs/qucs/$(echo $pkgver | cut -f1 -ds)-snapshots/qucs-${pkgver/s/.}.tar.gz") +source=("http://downloads.sourceforge.net/project/qucs/qucs/$pkgver/qucs-$pkgver.tar.gz") +md5sums=('4b93ffcc2ef3dbbd6fa53a5743721532') + +build() { + cd $srcdir/$pkgname-${pkgver/s/.} + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-${pkgver/s/.} + make DESTDIR=$pkgdir install +} |