Skip to content

Instantly share code, notes, and snippets.

@OzzyHelix
Created August 30, 2024 12:09
Show Gist options
  • Select an option

  • Save OzzyHelix/02417b15d754b7264e92296721ac0eaa to your computer and use it in GitHub Desktop.

Select an option

Save OzzyHelix/02417b15d754b7264e92296721ac0eaa to your computer and use it in GitHub Desktop.
Tenacity Plugins PKGBUILD the audacity-plugins but for tenacity
# Maintainer: modula t. <defaultxr at pm dot me>
# Contributor: Juan Perez <gatitofeliz at protonmail at com>
pkgname=tenacity-plugins
pkgver=20240830
pkgrel=1
pkgdesc="Additional Nyquist plugins for Audacity now installs for Tenacity"
arch=('any')
depends=('tenacity' 'tenacity-git')
url="https://github.com/nyancat18/audacity-plugin"
license=('None')
source=("git+https://github.com/nyancat18/audacity-plugin.git")
sha384sums=('SKIP')
package() {
cd "${srcdir}/audacity-plugin"
rm notch.ny # Already included in Tenacity.
mkdir -p "${pkgdir}/usr/share/tenacity/plug-ins"
for file in ${srcdir}/audacity-plugin/*.ny; do
install -D -m644 "${file}" "${pkgdir}/usr/share/tenacity/plug-ins/"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment