mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
21 lines
421 B
Bash
21 lines
421 B
Bash
pkgname=gnucap
|
|
pkgver=20091207
|
|
_pkgver=2009-12-07
|
|
pkgrel=1
|
|
pkgdesc="GNU Circuit Analysis Package"
|
|
arch=('x86_64')
|
|
url="http://gnucap.org/"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'readline')
|
|
source=(http://gnucap.org/devel/$pkgname-$_pkgver.tar.gz)
|
|
md5sums=('30701d110a3e642c5826358c64d2fb1b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$_pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|