Compare commits

...

2 Commits

Author SHA1 Message Date
eshanized
a1dfbf5ca9 🚀 feat: add sddm pkgbuild
Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
2025-01-10 12:53:17 +05:30
eshanized
756b2386d3 🧹 chore: automate package version 2025-01-10 12:34:46 +05:30
2 changed files with 32 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
# Contributor: Eshan Roy <eshan@snigdhaos.org>
pkgname=snigdhaos-asian-fonts
pkgver=r331.bdb761c5
pkgver=r350.ba8270bb
pkgrel=1
arch=("any")
url="https://wiki.archlinux.org/index.php/Fonts"

View File

@@ -0,0 +1,31 @@
# Maintainer: Eshan Roy <m.eshanized@gmail.com>
pkgname=snigdhaos-sddm-sugar-candy
pkgver=r1.3dabe46
pkgrel=1
pkgdesc="Sugar Candy is the sweetest login theme available for the SDDM display manager."
arch=('any')
url='https://store.kde.org/p/1312658/'
license=('GPL3')
depends=('sddm' 'qt5-graphicaleffects' 'qt5-quickcontrols2' 'qt5-svg')
makedepends=('git')
provides=("sddm-sugar-candy")
conflicts=("sddm-sugar-candy")
backup=('usr/share/sddm/themes/snigdhaos-sugar-candy/theme.conf')
source=('snigdhaos-sugar-candy::git+https://github.com/Snigdha-OS/snigdhaos-sugar-candy.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/snigdhaos-sugar-candy"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/snigdhaos-sugar-candy"
install -Dm644 "Main.qml" "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/Main.qml"
install -Dm644 "theme.conf" "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/theme.conf"
install -Dm644 "metadata.desktop" "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/metadata.desktop"
find ./Assets -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/{}" \;
find ./Backgrounds -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/{}" \;
find ./Components -type f -exec install -Dm644 {} "$pkgdir/usr/share/sddm/themes/snigdhaos-sugar-candy/{}" \;
# install -Dm 644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}