i-feel-fantastic.opus and still-alive.opus were deleted from the repo but still referenced in PKGBUILD source and package(), causing CI build to fail. Keep only the existing its-raining-tacos.opus.
18 lines
431 B
Bash
18 lines
431 B
Bash
# Maintainer: Celestia Ludenberg <ash8820@proton.me>
|
|
|
|
pkgname=antergos-next-memes
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Antergos NeXT welcome audio"
|
|
arch=('any')
|
|
url="https://github.com/Antergos-NeXT"
|
|
license=('custom:fairuse')
|
|
depends=()
|
|
source=("its-raining-tacos.opus")
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
install -dm755 "${pkgdir}/usr/share/antergos-next-memes"
|
|
cp "its-raining-tacos.opus" "${pkgdir}/usr/share/antergos-next-memes/"
|
|
}
|