diff options
author | Fabian Posch | 2024-06-06 13:57:17 +0200 |
---|---|---|
committer | Fabian Posch | 2024-06-06 13:57:17 +0200 |
commit | cd24a15c7c1afbf4318b266b47225a1eb30be43b (patch) | |
tree | bef290b089866601d23a6d07f459396fc8d9a812 | |
parent | 773c9b91f673299d62b31c5672af44ca6025aabb (diff) | |
download | aur-abc-git.tar.gz |
fix typo in build command
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = abc-git pkgdesc = System for Sequential Logic Synthesis and Formal Verification pkgver = 1.02.r5444.806a996 - pkgrel = 1 + pkgrel = 2 url = https://people.eecs.berkeley.edu/~alanmi/abc/ arch = x86_64 arch = i686 @@ -7,7 +7,7 @@ _basever=1 _patchlvl=02 _gitversion=r5444.806a996 pkgver=${_basever}.${_patchlvl}.${_gitversion} -pkgrel=1 +pkgrel=2 pkgdesc="System for Sequential Logic Synthesis and Formal Verification" url="https://people.eecs.berkeley.edu/~alanmi/abc/" arch=('x86_64' 'i686') @@ -40,7 +40,7 @@ build() { # we build abc with PIC enabled, so we don't have to compile it multiple times # for the different targets - make ABC_USE_PIC=1 abc libabc.so -j$(NPROC) + make ABC_USE_PIC=1 abc libabc.so -j$(nproc) } package() { |