summaryrefslogtreecommitdiffstats
path: root/distro/scripts/make-archive.sh
diff options
context:
space:
mode:
Diffstat (limited to 'distro/scripts/make-archive.sh')
-rwxr-xr-xdistro/scripts/make-archive.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/distro/scripts/make-archive.sh b/distro/scripts/make-archive.sh
new file mode 100755
index 0000000..9b6295d
--- /dev/null
+++ b/distro/scripts/make-archive.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+# create archive from current source using git
+
+VERSION=$(git describe --tags --always)
+# skip "v" from start of version number (if it exists) and replace - with .
+VERSION=${VERSION#v}
+VERSION=${VERSION//[-]/.}
+
+NAMEVER=libyang-$VERSION
+ARCHIVE=$NAMEVER.tar.gz
+
+git archive --format tgz --output $ARCHIVE --prefix $NAMEVER/ HEAD
+mkdir -p pkg/archives/dev/
+mv $ARCHIVE pkg/archives/dev/
+
+# apkg expects stdout to list archive files
+echo pkg/archives/dev/$ARCHIVE