summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a3c8999aaf21d16c60b231f5e4387ca9c8edf6af (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
25
26
27
28
29
# Maintainer: Nenad Stojanovikj <nekk1@live.com>

pkgname=plymouth-theme-arch-beat
pkgver='0.1'
pkgrel=2
pkgdesc='Plymouth theme with pulsating Arch Linux logo.'
arch=('any')
url="https://github.com/nenadstojanovikj/arch-beat/"
license=('MIT')
depends=('plymouth')
makedepends=('git')
source=("https://github.com/nenadstojanovikj/arch-beat/archive/v${pkgver}.tar.gz")
sha256sums=('SKIP')
install=plymouth-theme-arch-beat.install

package() {
  cd "arch-beat-${pkgver}"

  _themedir="$pkgdir/usr/share/plymouth/themes/arch-beat"

  for N in *.png arch-beat.plymouth arch-beat.script; do
    install -Dm644 $N "${_themedir}/$N"
  done

  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}

# vim:set ts=2 sw=2 et: