fix: remove deleted opus files from antergos-next-memes PKGBUILD

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.
This commit is contained in:
2026-07-03 00:15:09 +02:00
parent d5381b6885
commit 5c837f107d
+2 -8
View File
@@ -8,16 +8,10 @@ arch=('any')
url="https://github.com/Antergos-NeXT" url="https://github.com/Antergos-NeXT"
license=('custom:fairuse') license=('custom:fairuse')
depends=() depends=()
source=("i-feel-fantastic.opus" source=("its-raining-tacos.opus")
"still-alive.opus" sha256sums=('SKIP')
"its-raining-tacos.opus")
sha256sums=('SKIP'
'SKIP'
'SKIP')
package() { package() {
install -dm755 "${pkgdir}/usr/share/antergos-next-memes" install -dm755 "${pkgdir}/usr/share/antergos-next-memes"
cp "i-feel-fantastic.opus" "${pkgdir}/usr/share/antergos-next-memes/"
cp "still-alive.opus" "${pkgdir}/usr/share/antergos-next-memes/"
cp "its-raining-tacos.opus" "${pkgdir}/usr/share/antergos-next-memes/" cp "its-raining-tacos.opus" "${pkgdir}/usr/share/antergos-next-memes/"
} }