diff options
author | Mario Ortiz Manero | 2024-12-06 15:48:00 +0100 |
---|---|---|
committer | Mario Ortiz Manero | 2024-12-06 15:48:00 +0100 |
commit | a45c9728454cf1a50adabf344daf93d18b541b49 (patch) | |
tree | bc65944b0be3aff2f373acf9ea2dbbe529433294 | |
download | aur-a45c9728454cf1a50adabf344daf93d18b541b49.tar.gz |
import from easyeffects-presets for rename
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 30 |
2 files changed, 43 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..8f151d139492 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = polybar-easyeffects-presets + pkgdesc = Control EasyEffects from the polybar status bar + pkgver = 0.3.0 + pkgrel = 2 + url = https://github.com/marioortizmanero/polybar-polybar-easyeffects-presets + arch = any + license = custom:MIT + depends = bash + depends = easyeffects + source = https://github.com/marioortizmanero/polybar-polybar-easyeffects-presets/archive/v0.3.0.tar.gz + md5sums = b1cb7cfe51f4f723c293273df2a9e3ee + +pkgname = polybar-easyeffects-presets diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..28dd14e8d98e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Mario Ortiz Manero <marioortizmanero@gmail.com> +# shellcheck disable=SC2034,SC2154 +pkgname=polybar-easyeffects-presets +_reponame="polybar-$pkgname" # expected to change +pkgver=0.3.0 +pkgrel=2 +pkgdesc='Control EasyEffects from the polybar status bar' +url="https://github.com/marioortizmanero/${_reponame}" +license=('custom:MIT') +source=("${url}/archive/v${pkgver}.tar.gz") +md5sums=('b1cb7cfe51f4f723c293273df2a9e3ee') +arch=('any') +depends=( + 'bash' + 'easyeffects' +) +optdepends=( +) +conflicts=( +) + +package() { + set -e + cd "${_reponame}-$pkgver" + + install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + mkdir -p "$pkgdir/usr/bin" + install -D -m755 "./easyeffects-presets.bash" "$pkgdir/usr/bin/$pkgname" +} |