fix missing make dependency

This commit is contained in:
Fabian Posch 2024-06-05 13:56:09 +02:00
parent fa95bc8838
commit cc6fb0273f
2 changed files with 4 additions and 3 deletions

View file

@ -1,11 +1,12 @@
pkgbase = act-stdlib-git pkgbase = act-stdlib-git
pkgdesc = ACT stdlib provides the base ACT libraries which the rest of the toolchain uses. pkgdesc = ACT stdlib provides the base ACT libraries which the rest of the toolchain uses.
pkgver = 0.0.1.r62.99d8416 pkgver = 0.0.1.r62.99d8416
pkgrel = 1 pkgrel = 2
url = https://github.com/asyncvlsi/stdlib url = https://github.com/asyncvlsi/stdlib
arch = x86_64 arch = x86_64
license = Apache-2.0 license = Apache-2.0
makedepends = git makedepends = git
makedepends = make
depends = act-core depends = act-core
optdepends = act-core-git optdepends = act-core-git
provides = act-stdlib provides = act-stdlib

View file

@ -2,14 +2,14 @@
pkgname=act-stdlib-git pkgname=act-stdlib-git
pkgver=0.0.1.r62.99d8416 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." pkgdesc="ACT stdlib provides the base ACT libraries which the rest of the toolchain uses."
arch=('x86_64') arch=('x86_64')
url="https://github.com/asyncvlsi/stdlib" url="https://github.com/asyncvlsi/stdlib"
license=('Apache-2.0') license=('Apache-2.0')
depends=('act-core') depends=('act-core')
optdepends=('act-core-git') optdepends=('act-core-git')
makedepends=('git') makedepends=('git' 'make')
conflicts=('act-stdlib') conflicts=('act-stdlib')
provides=('act-stdlib') provides=('act-stdlib')
source=("git+${url}" "LICENSE") source=("git+${url}" "LICENSE")