36 lines
1 KiB
Bash
36 lines
1 KiB
Bash
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
# Contributor: Jovial Joe Jayarson <jovial7joe@hotmail.com>
|
|
|
|
pkgname=plymouth-theme-aregression
|
|
pkgver=0.2.0
|
|
pkgrel=1
|
|
pkgdesc="A sleek boot up plymouth progress bar"
|
|
arch=("any")
|
|
url="https://github.com/joe733/plymouth-theme-aregression"
|
|
license=(
|
|
MIT
|
|
)
|
|
makedepends=(
|
|
git
|
|
)
|
|
source=("$pkgname-$pkgver::git+$url.git#tag=$pkgver")
|
|
b2sums=('1ae326aaeeeb83a43f84d1d16bfe24845d8032ca6e49eebe15fb58dbe4a87208187a0b72cc8fe905a872db744eafac298acf79cc819bd1523c170cd545b1209f')
|
|
|
|
package() {
|
|
depends+=(
|
|
plymouth
|
|
)
|
|
local themename=aregression
|
|
local themedir="${pkgdir}/usr/share/plymouth/themes/${themename}"
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
for N in "${themename}.plymouth" assets/*.png "assets/${themename}.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 ft=sh ts=4 sw=4 et:
|