Adicionar DEBIAN/postinst

This commit is contained in:
rinba 2025-04-16 17:05:49 -03:00
parent 7a531c7fa3
commit e67c2495ce
1 changed files with 17 additions and 0 deletions

17
DEBIAN/postinst Normal file
View File

@ -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*