-
-
Save OzzyHelix/02417b15d754b7264e92296721ac0eaa to your computer and use it in GitHub Desktop.
Tenacity Plugins PKGBUILD the audacity-plugins but for tenacity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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