mirror of
https://github.com/jmcorgan/fips.git
synced 2026-07-22 07:48:26 +00:00
packaging(aur): add clang to makedepends for the libclang build dep
The fips build runs bindgen (via the rustables crate that powers the LAN gateway's nftables bindings), which needs libclang.so at build time. makepkg -s installs only declared makedepends, so without clang the AUR build panics with "Unable to find libclang". Add clang to the makedepends of both PKGBUILD and PKGBUILD-git so makepkg installs it and AUR users get the dependency. Surfaced by the always-on aur-build CI job.
This commit is contained in:
@@ -7,7 +7,7 @@ url="https://github.com/jmcorgan/fips"
|
||||
license=('MIT')
|
||||
arch=('x86_64')
|
||||
depends=('gcc-libs' 'glibc')
|
||||
makedepends=('cargo')
|
||||
makedepends=('cargo' 'clang')
|
||||
optdepends=('systemd-resolved: .fips DNS resolution')
|
||||
conflicts=('fips-git' 'fips-git-debug')
|
||||
backup=('etc/fips/fips.yaml' 'etc/fips/hosts' 'etc/fips/fips.nft')
|
||||
|
||||
@@ -7,7 +7,7 @@ url="https://github.com/jmcorgan/fips"
|
||||
license=('MIT')
|
||||
arch=('x86_64')
|
||||
depends=('dbus' 'gcc-libs' 'glibc')
|
||||
makedepends=('cargo' 'git')
|
||||
makedepends=('cargo' 'clang' 'git')
|
||||
optdepends=('systemd-resolved: .fips DNS resolution')
|
||||
provides=('fips')
|
||||
conflicts=('fips' 'fips-debug')
|
||||
|
||||
Reference in New Issue
Block a user