blob: cbe7db73cd9172a96a33021707f50dc5274543e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Ewout van Mansom <ewout@vanmansom.name>
pkgname=plymouth-theme-ecorp-glitch
pkgver=1.0.0
pkgrel=1
pkgdesc='E-Corp glitch animation from Mr. Robot scene ported to Plymouth'
arch=('any')
url='https://github.com/hrshbh/plymouth-themes'
license=('GPL3')
makedepends=('git')
depends=('plymouth')
install="${pkgname}.install"
source=(
'git+https://github.com/hrshbh/plymouth-themes.git'
)
sha256sums=('SKIP')
package() {
cd "${srcdir}/plymouth-themes/ecorp-glitch"
install -d "${pkgdir}/usr/share/plymouth/themes/ecorp-glitch"
install -Dm 644 * "${pkgdir}/usr/share/plymouth/themes/ecorp-glitch"
}
|