Package Details: plymouth-theme-arch-wireframe 20200125-1

Git Clone URL: https://aur.archlinux.org/plymouth-theme-arch-wireframe.git (read-only, click to copy)
Package Base: plymouth-theme-arch-wireframe
Description: An animated Plymouth theme based on a render from reddit user /u/RedPandaUA.
Upstream URL: None
Keywords: boot plymouth plymouth-git theme
Licenses: GPL
Submitter: dreamsmasher
Maintainer: dreamsmasher
Last Packager: dreamsmasher
Votes: 2
Popularity: 0.000000
First Submitted: 2020-01-25 22:49 (UTC)
Last Updated: 2020-01-25 22:49 (UTC)

Latest Comments

solsticedhiver commented on 2020-02-25 11:09 (UTC) (edited on 2020-02-25 11:39 (UTC) by solsticedhiver)

The PKGBUILD is broken and ends up generating an empty package. A working one is:

#Maintainer: dreamsmasher <dreamsmasher at protonmail dot com>

pkgname=plymouth-theme-arch-wireframe
pkgver=20200125
pkgrel=1
pkgdesc="An animated Plymouth theme based on a render from reddit user /u/RedPandaUA."
arch=('any')
license=('GPL')
depends=('plymouth')

install='plymouth-theme-arch-wireframe.install'
source=('plymouth-theme-arch-wireframe.tar.gz::https://github.com/dreamsmasher/Arch-Wireframe-Plymouth-Theme/releases/download/v1.0/arch-wireframe.tar.gz'
        'plymouth-theme-arch-wireframe.install')
md5sums=('f24b691b705d37d3430848fedb9e897d' 'a73e98c1e9881922ad2242588a42c33f')


package() {
    cd $srcdir/arch-wireframe
    mkdir -p ${pkgdir}/usr/share/plymouth/themes/arch-wireframe/animation
    install -Dm644 animated-boot.script ${pkgdir}/usr/share/plymouth/themes/arch-wireframe
    install -Dm644 arch-wireframe.plymouth ${pkgdir}/usr/share/plymouth/themes/arch-wireframe
    cp -a animation/* ${pkgdir}/usr/share/plymouth/themes/arch-wireframe/animation
}