From cc6fb0273fd91b76321c2d28567f49d7f869869d Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Wed, 5 Jun 2024 13:56:09 +0200 Subject: [PATCH] fix missing make dependency --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c516e93..33cf79c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,12 @@ pkgbase = act-stdlib-git pkgdesc = ACT stdlib provides the base ACT libraries which the rest of the toolchain uses. pkgver = 0.0.1.r62.99d8416 - pkgrel = 1 + pkgrel = 2 url = https://github.com/asyncvlsi/stdlib arch = x86_64 license = Apache-2.0 makedepends = git + makedepends = make depends = act-core optdepends = act-core-git provides = act-stdlib diff --git a/PKGBUILD b/PKGBUILD index af22b14..30d943b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ pkgname=act-stdlib-git pkgver=0.0.1.r62.99d8416 -pkgrel=1 +pkgrel=2 pkgdesc="ACT stdlib provides the base ACT libraries which the rest of the toolchain uses." arch=('x86_64') url="https://github.com/asyncvlsi/stdlib" license=('Apache-2.0') depends=('act-core') optdepends=('act-core-git') -makedepends=('git') +makedepends=('git' 'make') conflicts=('act-stdlib') provides=('act-stdlib') source=("git+${url}" "LICENSE")