Package Details: xsnow-legacy 1.42-2

Git Clone URL: https://aur.archlinux.org/xsnow-legacy.git (read-only, click to copy)
Package Base: xsnow-legacy
Description: Display snow, Santa and his reindeers on the root window
Upstream URL: https://janswaal.home.xs4all.nl/Xsnow/
Licenses: custom
Conflicts: xsnow, xsnow-bin, xsnow-comp-patch-git
Provides: xsnow
Submitter: AlphaJack
Maintainer: AlphaJack
Last Packager: AlphaJack
Votes: 5
Popularity: 0.124339
First Submitted: 2021-12-21 20:51 (UTC)
Last Updated: 2021-12-26 11:04 (UTC)

Latest Comments

ainola commented on 2021-12-26 05:43 (UTC)

bidulock: The updated version is a better fit for the 'xsnow' name, so I've accepted the request to have this renamed to -legacy. Though... is this version still something we need to have around?

bidulock commented on 2021-12-22 12:24 (UTC)

This version works fine, and always has. If you want the gtk3 version, use https://aur.archlinux.org/packages/xsnow-wv

bidulock commented on 2021-12-21 05:48 (UTC)

@Alphajack

No, but I made you https://aur.archlinux.org/packages/xsnow-wv that you can use instead.

AlphaJack commented on 2021-12-21 00:21 (UTC)

Hi, can you please update the package to Willem Vermin version? This is the working PKGBUILD:

# Maintainer: AlphaJack <alphajack at tuta dot io>

pkgname="xsnow"
pkgver=3.4.2
pkgrel=1
pkgdesc="Let it snow on your desktop"
url="https://sourceforge.net/projects/xsnow/"
license=("GPL3")
arch=("x86_64")
conflicts=("xsnow-bin")
depends=("atk" "cairo" "gtk3" "libx11" "libxpm" "libxml2")
source=("https://nav.dl.sourceforge.net/project/xsnow/xsnow-$pkgver.tar.gz")
sha256sums=('c618d7a73cef7070755f38ddc3665487afa8c71a9c82ae9055723e594a62fd9e')

build(){
 cd "$pkgname-$pkgver"
 ./configure
 make
}

package(){
 cd "$pkgname-$pkgver"
 install -D -m 755 "src/xsnow" "$pkgdir/usr/bin/xsnow"
 install -D -m 644 "data/xsnow.appdata.xml" "$pkgdir/usr/share/metainfo/xsnow.appdata.xml"
 install -D -m 644 "data/xsnow.desktop" "$pkgdir/usr/share/applications/xsnow.desktop"
 install -D -m 644 "src/Pixmaps/xsnow.svg" "$pkgdir/usr/share/pixmaps/xsnow.svg"
 install -d "$pkgdir/usr/share/man/man6"
 gzip -c "src/xsnow.6" > "$pkgdir/usr/share/man/man6/xsnow.6.gz"
}