diff options
author | altaway | 2020-11-25 21:59:46 +0530 |
---|---|---|
committer | altaway | 2020-11-25 21:59:46 +0530 |
commit | 070ac38562d5bb105b1782c857ccc161bed13def (patch) | |
tree | 89f46a914fb576158383e276d6aa86cd972e86eb | |
download | aur-070ac38562d5bb105b1782c857ccc161bed13def.tar.gz |
initial commit
-rw-r--r-- | .SRCINFO | 28 | ||||
-rw-r--r-- | PKGBUILD | 23 | ||||
-rw-r--r-- | vital-synth.install | 13 |
3 files changed, 64 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..b3447d8615b9 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,28 @@ +pkgbase = vital-synth + pkgdesc = Powerful wavetable synthesizer with realtime modulation feedback. Vital is a MIDI enabled polyphonic music synthesizer with an easy to use parameter modulation system with real-time graphical feedback. + pkgver = 1.0.3 + pkgrel = 1 + url = https://vital.audio + install = vital-synth.install + arch = i686 + arch = x86_64 + groups = + license = custom + depends = aarch64-linux-gnu-gcc>=5 + depends = alsa-lib>=1.0.16 + depends = freetype2>=2.2.1 + depends = gcc-libs + depends = gcc>=3.3.1 + depends = glib2>=2.12.0 + depends = glibc>=2.17 + depends = libcurl-gnutls>=7.16.2 + depends = libgl + depends = libglvnd + depends = libsecret>=0.7 + options = !strip + options = !emptydirs + source_x86_64 = https://github.com/altaway/VitalInstaller/releases/download/v1.0.3-1/VitalInstaller.deb + sha512sums_x86_64 = 2ebe787b6eb58148c7026a3e584890b4a1769e0044b1d59182c38b82c34c653f564c4dbf7f13ce673bdeadd8ce4afcebacec809605e890ab59f275372ee5fa7c + +pkgname = vital-synth + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..65ec392e80d1 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: altaway <email@altaway.uk> +pkgname=vital-synth +pkgver=1.0.3 +pkgrel=1 +pkgdesc="Powerful wavetable synthesizer with realtime modulation feedback. Vital is a MIDI enabled polyphonic music synthesizer with an easy to use parameter modulation system with real-time graphical feedback." +arch=('i686' 'x86_64') +url="https://vital.audio" +license=('custom') +groups=('') +depends=('aarch64-linux-gnu-gcc>=5' 'alsa-lib>=1.0.16' 'freetype2>=2.2.1' 'gcc-libs' 'gcc>=3.3.1' 'glib2>=2.12.0' 'glibc>=2.17' 'libcurl-gnutls>=7.16.2' 'libgl' 'libglvnd' 'libsecret>=0.7') +options=('!strip' '!emptydirs') +install=${pkgname}.install +source_x86_64=("https://github.com/altaway/VitalInstaller/releases/download/v1.0.3-1/VitalInstaller.deb") +sha512sums_x86_64=('2ebe787b6eb58148c7026a3e584890b4a1769e0044b1d59182c38b82c34c653f564c4dbf7f13ce673bdeadd8ce4afcebacec809605e890ab59f275372ee5fa7c') + +package(){ + + # Extract package data + tar xf data.tar.xz -C "${pkgdir}" + + # install -D -m644 "/usr/share/doc/vital/copyright" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + +} diff --git a/vital-synth.install b/vital-synth.install new file mode 100644 index 000000000000..a9ee528125b1 --- /dev/null +++ b/vital-synth.install @@ -0,0 +1,13 @@ +post_install() { + if [ -f usr/bin/update-mime-database ]; then + update-mime-database usr/share/mime &> /dev/null + fi +} + +post_upgrade() { + post_install +} + +post_remove() { + if [ -f usr/bin/update-mime-database ]; then update-mime-database usr/share/mime &> /dev/null ; fi +} |