Adicionar DEBIAN/postinst
This commit is contained in:
parent
7a531c7fa3
commit
e67c2495ce
|
@ -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*
|
Loading…
Reference in New Issue