From 72580cdd410f784e454830c7f93bdb6d4bfda44f Mon Sep 17 00:00:00 2001 From: Dor dicke Gind Date: Sun, 29 Jan 2023 13:22:13 +0100 Subject: [PATCH] [INIT] --- PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..2c0c50c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,37 @@ +# This is an example PKGBUILD file. Use this as a start to creating your own, +# and remove these comments. For more information, see 'man PKGBUILD'. +# NOTE: Please fill out the license field for your package! If it is unknown, +# then please put 'unknown'. + +# Maintainer: Dor Gind +pkgname=gind-grub-theme +pkgver=1.0.0 +pkgrel=1 +epoch=0 +pkgdesc="Gind archlinux Grub theme" +arch=(any) +license=('unknown') +groups=() +depends=() +makedepends=() +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=("https://gindserver.duckdns.org/gitea/drdickgind/gind-grub-theme/archive/$pkgver.tar.gz") +#source=("gind-grub-theme.tar.gz") +noextract=() +md5sums=('SKIP') +validpgpkeys=() + +package() { + echo $pkgname + echo $pkgdir + mkdir -p "${pkgdir}/boot/grub/themes/" + cp -R "${srcdir}/$pkgname/" "${pkgdir}/boot/grub/themes/gind" +}