blob: 53d775cee2690d96d5257c209043f1303a93a978 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
pkgname=plymouth-theme-arch-os
pkgver=r29.17edba0
pkgrel=1
pkgdesc="Arch OS Theme for Plymouth"
arch=('any')
url="https://github.com/murkl/plymouth-theme-arch-os"
license=('GPL2')
depends=('plymouth' 'cantarell-fonts')
makedepends=('git')
source=($pkgname::git+$url.git)
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
package() {
cd "${srcdir}/${pkgname}/src"
mkdir -p "${pkgdir}/usr/share/plymouth/themes/arch-os"
install -Dvm644 ./* "${pkgdir}/usr/share/plymouth/themes/arch-os"
}
|