blob: 5d2b90d9deef9730473ff0b3d6e01fe6361c5973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Tomás Pinho <me@tomaspinho.com>
pkgname=plymouth-theme-endeavouros
pkgver=1.1
pkgrel=1
pkgdesc="Plymouth Theme for EndeavourOS"
arch=('any')
url="https://github.com/tomaspinho/plymouth-endeavouros"
license=('GPL')
depends=('plymouth')
install='plymouth-theme-endeavouros.install'
makedepends=('git')
source=("git+$url.git")
md5sums=('SKIP')
package() {
cd $srcdir/$repo
install -dm755 "$pkgdir/usr/share/plymouth/themes/endeavouros"
cp -r ./plymouth-endeavouros/* "$pkgdir/usr/share/plymouth/themes/endeavouros"
}
|