🌈️ apply a wallpaper based on the weather outside
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(PKGBUILD): paths, depends on bash

Angel Wang (Jun 24, 2026, 12:23 PM -0600) 904697b9 b9e3b65f

+4 -4
+4 -4
PKGBUILD
··· 1 1 pkgname=rainwall-git 2 - pkgver=r20.b8de15c 2 + pkgver=r47.c87b8dd 3 3 pkgrel=1 4 4 pkgdesc="Apply a wallpaper based on the weather outside" 5 5 arch=('any') 6 6 url="https://github.com/weightedangelcube/rainwall" 7 7 license=('GPL-3.0-only') 8 - depends=('imagemagick') 8 + depends=('imagemagick' 'bash') 9 9 makedepends=('git' 'deno') 10 10 provides=("${pkgname%-git}") 11 11 conflicts=("${pkgname%-git}") ··· 25 25 26 26 build() { 27 27 cd "$srcdir/${pkgname%-git}" 28 - deno compile --output build/rainwall-analyze -A analyze/index.ts 29 - deno compile --output build/rainwall-apply -A apply/index.ts 28 + deno compile --output build/rainwall-analyze -A src/analyze/index.ts 29 + deno compile --output build/rainwall-apply -A src/apply/index.ts 30 30 } 31 31 32 32 package() {