This commit is contained in:
Elijah R 2024-03-01 22:31:13 -05:00
commit ff2c8beaac
2 changed files with 16 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.pkg.tar.zst
src/
pkg/
kevinlinux-branding/

12
PKGBUILD Normal file
View File

@ -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/
}