From ff2c8beaac8e240b2f0da324df6cc00a5259c774 Mon Sep 17 00:00:00 2001 From: Elijah R Date: Fri, 1 Mar 2024 22:31:13 -0500 Subject: [PATCH] init --- .gitignore | 4 ++++ PKGBUILD | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..983205f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pkg.tar.zst +src/ +pkg/ +kevinlinux-branding/ diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..784e16a --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,12 @@ +pkgname='kevinlinux-branding' +pkgver=1.0.0 +pkgrel=1 +epoch= +pkgdesc='Branding and customization for the KevinLinux distribution' +arch=('any') +license=('MIT') +source=('git+https://git.kevinthe.horse/KevinSoftware/kevinlinux-branding.git') +sha256sums=('SKIP') +package() { + cp -r kevinlinux-branding/* $pkgdir/ +}