blob: 5782fad58cf54acdb6d4aec7763e026686d7df43 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Yamada Hayao <shun819.mail@gmail.com>
# Contributor: YamaD <yamad.linuxer@gmail.com>
pkgname=plymouth-theme-alter-logo
_themename=alter-logo
_pkgname=plymouth-theme-alter
pkgver=1.0.0
pkgrel=1
pkgdesc="AlterLinux用のplymouthテーマ"
arch=('any')
url=https://github.com/yamad-linuxer/plymouth-theme-alter
license=('GPL')
depends=('plymouth')
optdepends=()
source=("${url}/archive/${pkgver}.zip")
md5sums=('6583b328581df987c6b22bfcc815dc13')
conflicts=("${pkgname}-git")
prepare () {
cd "${srcdir}"
mv ${_pkgname}-${pkgver}/${_themename} ./
rm -rf "${_pkgname}-${pkgver}"
rm ./${pkgver}.zip
}
build () {
cd "${srcdir}"
mkdir -p ./usr/share/plymouth/themes/${_themename}/
cp -r ./${_themename}/intro/* ./usr/share/plymouth/themes/${_themename}/
cp -r ./${_themename}/loop/* ./usr/share/plymouth/themes/${_themename}/
cp -r ./${_themename}/misc/* ./usr/share/plymouth/themes/${_themename}/
rm -rf ${_themename}
}
package() {
mkdir -p "$pkgdir"
cp -r * "$pkgdir"
}
|