summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d673ac4728f99b1ca2ed006fb6ef4c89b31a056c (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=r27.e5aa599
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"
}