mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 06:57:15 +08:00
23 lines
590 B
Bash
23 lines
590 B
Bash
# TODO
|
|
|
|
pkgname=grub2-themes-dharma
|
|
_pkgname=Dharma
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="Chakra Dharma Grub2-theme."
|
|
url="http://chakra-project.org"
|
|
screenshot="http://ext4.files.wordpress.com/2012/08/dharma-grub-theme.png"
|
|
arch=('any')
|
|
license=('CC-BY-SA')
|
|
depends=('grub2-common')
|
|
install=${pkgname}.install
|
|
source=("http://chakra-linux.org/sources/grub2-themes/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('35cf70d24a4c54ef8d67814f5f5dda0c')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
install -dm755 "$pkgdir/usr/share/grub/themes"
|
|
cp -dpr --no-preserve=ownership "${_pkgname}" "$pkgdir/usr/share/grub/themes"
|
|
}
|