SiIvaGunner rip: OMORIBOY x Raining Tacos mashup. Used by antergos-welcome as auto-play welcome song.
24 lines
642 B
Bash
24 lines
642 B
Bash
# Maintainer: Celestia Ludenberg <ash8820@proton.me>
|
|
|
|
pkgname=antergos-next-memes
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Cnchi installer audio enhancements"
|
|
arch=('any')
|
|
url="https://github.com/Antergos-NeXT"
|
|
license=('custom:fairuse')
|
|
depends=()
|
|
source=("i-feel-fantastic.opus"
|
|
"still-alive.opus"
|
|
"its-raining-tacos.opus")
|
|
sha256sums=('SKIP'
|
|
'SKIP'
|
|
'SKIP')
|
|
|
|
package() {
|
|
install -dm755 "${pkgdir}/usr/share/cnchi-memes"
|
|
cp "i-feel-fantastic.opus" "${pkgdir}/usr/share/cnchi-memes/"
|
|
cp "still-alive.opus" "${pkgdir}/usr/share/cnchi-memes/"
|
|
cp "its-raining-tacos.opus" "${pkgdir}/usr/share/cnchi-memes/"
|
|
}
|