diff options
author | gilcu3 | 2022-05-02 11:06:13 +0200 |
---|---|---|
committer | gilcu3 | 2022-05-02 11:06:13 +0200 |
commit | 2a8b4f03791c35a1049d71d553e6c5f631601e25 (patch) | |
tree | fd34589290fda4c8a7420a3046756c6f671705c2 /PKGBUILD | |
parent | 83cc95debb7cf51562024016697c8eb5850f5e76 (diff) | |
download | aur-iverilog-git.tar.gz |
fixed build
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -2,9 +2,8 @@ pkgname=iverilog-git _gitname=$(printf ${pkgname%%-git}) -_gitbranch=master _gitauthor=steveicarus -pkgver=s20141205.r283.g437dc10 +pkgver=s20150603.r1490.g0a86773c5 pkgrel=1 pkgdesc="Icarus Verilog simulation and synthesis tool" arch=('i686' 'x86_64') @@ -15,7 +14,7 @@ provides=("$_gitname") conflicts=("$_gitname-snapshot" "$_gitname-legacy" "$_gitname") options=('staticlibs') makedepends=('gperf' 'bison' 'flex' 'readline') -source=("git://github.com/$_gitauthor/$_gitname.git#branch=$_gitbranch") +source=("git+https://github.com/$_gitauthor/$_gitname.git") sha512sums=('SKIP') pkgver() { @@ -32,5 +31,5 @@ build() { package() { cd "$srcdir/$_gitname" - make -j1 prefix="$pkgdir/usr" install # It failed awhile ago without the -j1, going to leave it. + make prefix="$pkgdir/usr" install } |