#!/bin/bash
# Assemble a LibreOffice spreadsheet file
# launch in home_path
#
# This file is part of LIBPF
# All rights reserved; do not distribute without permission.
# (C) Copyright 2013-2026 simevo s.r.l.

set -e

rm -f streamtable.ods
zip streamtable.ods content.xml
CWD=$(pwd)
pushd /usr/share/libpf-runtime/ || exit
zip "${CWD}/streamtable.ods" META-INF/manifest.xml meta.xml mimetype
popd || exit
