Skip to content
Snippets Groups Projects
Commit 8ec41127 authored by akiraohgaki's avatar akiraohgaki
Browse files

Update build.sh

parent 98d5bdaa
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,14 @@ build_flatpak() { ...@@ -33,7 +33,14 @@ build_flatpak() {
} }
build_appimage() { build_appimage() {
echo 'Not implemented yet' cd "${PROJDIR}"
mkdir -p "${BUILDDIR}"
export_srcarchive "${SRCARCHIVE}"
tar -xzvf "${SRCARCHIVE}" -C "${BUILDDIR}"
cp "${PROJDIR}/pkg/appimage/appimage.sh" "${BUILDDIR}/${PKGNAME}"
cd "${BUILDDIR}/${PKGNAME}"
sh appimage.sh
} }
if [ "${BUILDTYPE}" = 'snap' ]; then if [ "${BUILDTYPE}" = 'snap' ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment