blob: ef248a211128b8b2426f443269e40cb0c8ba6431 (
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
|
# Me is just a random anon from the internet. I'm not related to prism in any way
# Contact about package issues tho. <bjoel2@i2pmail.org>
pkgname="prismlauncher-themes-git"
pkgver=2025.01.06_1736185417.r0.gef4bafc
pkgrel=1
pkgdesc="PrismLauncher themes from their official github"
arch=('any')
url="https://github.com/PrismLauncher/Themes"
license=('custom')
makedepends=('git')
optdepends=('prismlauncher')
source=("${pkgname}::git+https://github.com/PrismLauncher/Themes.git")
sha256sums=('SKIP')
install='themes.install'
pkgver() {
cd "${pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//g'
}
package() {
cd "${pkgname}"
install --mode=644 -Dt "$pkgdir/usr/share/licenses/$pkgname" LICENSES/*
mkdir "${pkgdir}/usr/share/prismlauncher-themes"
cd themes
for themeDir in *
do
cp -r "$themeDir" "${pkgdir}/usr/share/prismlauncher-themes/${themeDir}"
done
}
|