diff options
author | David Adler | 2025-03-23 13:15:16 +0100 |
---|---|---|
committer | David Adler | 2025-03-23 13:15:16 +0100 |
commit | 383073b1f8d96be56d7a504b1cfc06fe009b36df (patch) | |
tree | dca45c792a7114995bbd4a0d1b5a7cfcb2b15282 | |
parent | 44dbc3876cd2071a2aef22f16230f5c405af0934 (diff) | |
download | aur-qucs-git.tar.gz |
removes unneeded makedepend gperf
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | PKGBUILD | 4 |
3 files changed, 8 insertions, 4 deletions
@@ -1,6 +1,6 @@ pkgbase = qucs-git pkgdesc = An integrated circuit simulator GUI (develop branch) - pkgver = r3680.c390574 + pkgver = r3698.9269528 pkgrel = 1 url = http://github.com/qucs/qucs arch = x86_64 @@ -11,7 +11,6 @@ pkgbase = qucs-git makedepends = automake makedepends = perl-gd makedepends = perl-xml-libxml - makedepends = gperf makedepends = libtool depends = qt5-tools depends = qt5-script diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..cb242805f5c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +* +!PKGBUILD +!.SRCINFO +!.gitignore + @@ -3,7 +3,7 @@ _pkgname=qucs pkgname=$_pkgname-git -pkgver=r3680.c390574 +pkgver=r3698.9269528 pkgrel=1 pkgdesc="An integrated circuit simulator GUI (develop branch)" arch=('x86_64' 'i686') @@ -11,7 +11,7 @@ url="http://github.com/qucs/qucs" license=('GPLv3+') options=(!makeflags) depends=('qt5-tools' 'qt5-script' ) -makedepends=('git' 'autoconf' 'automake' 'perl-gd' 'perl-xml-libxml' 'gperf' 'libtool') +makedepends=('git' 'autoconf' 'automake' 'perl-gd' 'perl-xml-libxml' 'libtool') optdepends=('freehdl: status unknown' 'qucsator-git: to enable circuit simulation' 'gnucsator-git: to enable circuit simulation') |