aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2021-04-01 22:50:53 +0200
committerPatrick Spek <p.spek@tyil.nl>2021-04-01 22:50:53 +0200
commit12b13d2a16f77f250e8dc77708bd3b9d798078e3 (patch)
tree49684bbff0bfbac2974e33a68780670ac9b2c99e
parent2d14cb908601f15cbb52e3212e90420f7451b288 (diff)
First draft for DragonflyBSD support
-rw-r--r--etc/bindeps.d/dragonfly.txt2
-rw-r--r--etc/pacmans.txt1
-rw-r--r--lib/actions/install.bash1
3 files changed, 4 insertions, 0 deletions
diff --git a/etc/bindeps.d/dragonfly.txt b/etc/bindeps.d/dragonfly.txt
new file mode 100644
index 0000000..f353329
--- /dev/null
+++ b/etc/bindeps.d/dragonfly.txt
@@ -0,0 +1,2 @@
+gcc=gcc
+perl=perl5
diff --git a/etc/pacmans.txt b/etc/pacmans.txt
index 9d8755d..ff8af04 100644
--- a/etc/pacmans.txt
+++ b/etc/pacmans.txt
@@ -1,3 +1,4 @@
+dragonfly=pkg update && pkg install-y
freebsd=pkg update && pkg install -y
linux-alpine_linux=apk add --no-cache
linux-archlinux=pacman -Sy --noconfirm
diff --git a/lib/actions/install.bash b/lib/actions/install.bash
index e381d4d..496fb71 100644
--- a/lib/actions/install.bash
+++ b/lib/actions/install.bash
@@ -44,6 +44,7 @@ action() {
# Prepare environment for a reproducible install
case ${RSTAR_PLATFORM["key"]} in
+ dragonfly) LC_ALL=C ;;
linux-arch_linux) LC_ALL=en_US.UTF-8 ;;
*) LC_ALL=C.UTF-8 ;;
esac