From e67c2495ce00699652ce109fd4bcf50f61139041 Mon Sep 17 00:00:00 2001 From: rinba Date: Wed, 16 Apr 2025 17:05:49 -0300 Subject: [PATCH] Adicionar DEBIAN/postinst --- DEBIAN/postinst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 DEBIAN/postinst diff --git a/DEBIAN/postinst b/DEBIAN/postinst new file mode 100644 index 0000000..6c14edf --- /dev/null +++ b/DEBIAN/postinst @@ -0,0 +1,17 @@ +#!/bin/sh + +set -e + +# Baixar e extrair o Seq66 +wget https://github.com/ahlstromcj/seq66/archive/refs/tags/0.99.12.tar.gz -O /tmp/seq66.tar.gz +tar -xvzf /tmp/seq66.tar.gz -C /tmp +cd /tmp/seq66-0.99.12/ + +# Compilar e instalar +./contrib/scripts/reconf +./configure +make +make install + +# Limpar +rm -rf /tmp/seq66* \ No newline at end of file