diff options
| author | Alexander Hill <ahill@breadpudding.dev> | 2025-04-22 22:08:41 -0400 |
|---|---|---|
| committer | Alexander Hill <ahill@breadpudding.dev> | 2025-04-22 22:08:41 -0400 |
| commit | 554825b5e89f32e39331f923501e01f77b3760e8 (patch) | |
| tree | b18414dc2e3a2740e2d7078ffa120a3730acdf24 /build-chroot.sh | |
| parent | 3c3b75da184f6c8236f342058230ac951ee32ffd (diff) | |
Added libsodium
Diffstat (limited to 'build-chroot.sh')
| -rwxr-xr-x | build-chroot.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build-chroot.sh b/build-chroot.sh index 1e79b74..1a8a76f 100755 --- a/build-chroot.sh +++ b/build-chroot.sh @@ -598,6 +598,20 @@ make -j $THREADS make -j $THREADS install cd .. +# libsodium Build +tar xf ../sources/libsodium-*.tar* +cd libsodium-*/ +./configure \ + --disable-static \ + --exec-prefix="" \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --prefix=/usr \ + --sysconfdir=/etc +make -j $THREADS +make -j $THREADS install +cd .. + # Basic Configuration echo "root::0:0::/home/root:/bin/zsh" > /etc/passwd echo "root:x:0:root" > /etc/group |
