-
Notifications
You must be signed in to change notification settings - Fork 1
/
PKGBUILD
51 lines (49 loc) · 812 Bytes
/
PKGBUILD
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
42
43
44
45
46
47
48
49
50
51
# Maintainer: Julian Brost <[email protected]>
pkgname=grub-theme-dieses-system-ist-sicher
pkgver=1
pkgrel=1
epoch=
pkgdesc=""
arch=("any")
url=""
license=()
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("theme.txt"
"sicher.png")
noextract=()
sha256sums=('SKIP'
'SKIP')
validpgpkeys=()
#prepare() {
# cd "$pkgname-$pkgver"
# patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
#}
#
#build() {
# cd "$pkgname-$pkgver"
# ./configure --prefix=/usr
# make
#}
#
#check() {
# cd "$pkgname-$pkgver"
# make -k check
#}
package() {
local dest="$pkgdir/usr/share/grub/themes/dieses-system-ist-sicher"
install -d "$dest"
for file in "${source[@]}"; do
install -m644 "$file" "$dest/$file"
done
}