aboutsummaryrefslogtreecommitdiff
path: root/deployment/win-x86
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-10 19:45:21 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-10 19:45:30 +0100
commit399a079dd472a0ad424884eb48a0d9e471a95c70 (patch)
tree43bd338b79f1243dbe7f4f07ca63f1b5363724fb /deployment/win-x86
parent3d867c2c46cec39b669bb8647efef677f32b8a8d (diff)
Build scripts and build system consolidation.
Squashed commit.
Diffstat (limited to 'deployment/win-x86')
-rw-r--r--deployment/win-x86/build.sh7
-rw-r--r--deployment/win-x86/clean.sh7
-rw-r--r--deployment/win-x86/package.sh9
3 files changed, 23 insertions, 0 deletions
diff --git a/deployment/win-x86/build.sh b/deployment/win-x86/build.sh
new file mode 100644
index 0000000000..610db356a5
--- /dev/null
+++ b/deployment/win-x86/build.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+source ../common.build.sh
+
+VERSION=`get_version ../..`
+
+build_jellyfin ../../Jellyfin.Server Release win-x86 `pwd`/dist/jellyfin_${VERSION}
diff --git a/deployment/win-x86/clean.sh b/deployment/win-x86/clean.sh
new file mode 100644
index 0000000000..3df2d7796e
--- /dev/null
+++ b/deployment/win-x86/clean.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+source ../common.build.sh
+
+VERSION=`get_version ../..`
+
+clean_jellyfin ../.. Release `pwd`/dist/jellyfin_${VERSION}
diff --git a/deployment/win-x86/package.sh b/deployment/win-x86/package.sh
new file mode 100644
index 0000000000..e8410e8c23
--- /dev/null
+++ b/deployment/win-x86/package.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+source ../common.build.sh
+
+VERSION=`get_version ../..`
+
+package_portable ../.. `pwd`/dist/jellyfin_${VERSION}
+
+#TODO setup and maybe change above code to produce the Windows native zip format.