Date: Monday, January 30, 2017 @ 10:51:43 Author: spupykin Revision: 209464
Added: adms/ adms/repos/ adms/trunk/ adms/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: adms/trunk/PKGBUILD =================================================================== --- adms/trunk/PKGBUILD (rev 0) +++ adms/trunk/PKGBUILD 2017-01-30 10:51:43 UTC (rev 209464) @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Sergej Pupykin <[email protected]> + +pkgname=adms +pkgver=2.3.6 +pkgrel=1 +pkgdesc="ADMS is a codegenerator for the VERILOG-A(MS) language" +arch=('x86_64' 'i686') +url="https://github.com/qucs/adms" +license=('GPL') +depends=('glibc') +makedepends=('git' 'autoconf' 'automake' 'flex' 'bison' 'perl-gd' 'perl-xml-libxml') +options=(!makeflags) +source=("$pkgname-$pkgver.tar.gz::https://github.com/Qucs/ADMS/archive/release-$pkgver.tar.gz") +sha256sums=('aaf3f635aae41e1c11913e09b8e1bc5eea64256dcec70f3f60d1b9a794af6053') + +build() { + cd ADMS-release-$pkgver + ./bootstrap.sh + ./configure --enable-maintainer-mode --prefix=/usr + make +} + +package() { + cd ADMS-release-$pkgver + make DESTDIR="$pkgdir" install +}
