blob: d5d4bf466db701e99a4a9ebae7ce69ed584722a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Abraham Murciano <abrahammurciano[at]gmail[dot]com>
_theme="sweet-arch"
_pkgname="plymouth-theme-$_theme"
pkgname="$_pkgname-git"
_gitname=$_pkgname
pkgver=3
pkgrel=1
pkgdesc="Make your Arch Linux splash screen look wonderful with this theme inspired by Sweet by EliverLara."
arch=("any")
url="https://github.com/abrahammurciano/$_gitname"
license=("GPL")
install="message.install"
depends=("plymouth")
makedepends=("git")
source=("git+$url.git")
sha256sums=("SKIP")
package() {
cd "$_gitname/$_theme"
install -m755 -d "${pkgdir}/usr/share/plymouth/themes/$_theme"
install -m644 -t "${pkgdir}/usr/share/plymouth/themes/$_theme" *
}
|