🐛 fix(source): the source files has been updated

This commit is contained in:
eshanized
2024-12-30 02:28:51 +05:30
parent 281e76b434
commit d3036e54bb
2 changed files with 18 additions and 15 deletions

View File

@@ -14,7 +14,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Check Conventional Commit - name: Check Conventional Commit
run: | run: |

View File

@@ -1,26 +1,29 @@
# Maintainer: Eshan Roy <m.eshanized@gmail.com> # Maintainer: Eshan Roy <m.eshanized@gmail.com>
pkgname=snigdhaos-cinnamon-config pkgname=snigdhaos-cinnamon-config
pkgdesc= pkgver=1
pkgver="1"
pkgrel=1 pkgrel=1
arch=('any') arch=('any')
url="" pkgdesc="SnigdhaOS Cinnamon Desktop configuration files"
url="https://snigdha-os.github.io"
license=('MIT') license=('MIT')
depends=('kvantum-qt5' 'noto-fonts' 'snigdhaos-default-config')
makedepends=('coreutils') makedepends=('coreutils')
source=("") source=("https://github.com/snigdha-os/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('SKIP') sha256sums=('SKIP')
install=$pkgname.install install=$pkgname.install
provides=('snigdhaos-desktop') provides=('snigdhaos-desktop')
conflicts=('snigdhaos-desktop') conflicts=('snigdhaos-desktop')
package() { pkgver() {
depends=('kvantum-qt5' printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
'noto-fonts' }
'snigdhaos-default-config')
package() {
install -d "$pkgdir"/etc # Create required directories
cp -rf "$srcdir"/$pkgname-$_commit/etc "$pkgdir" install -d "$pkgdir/etc" "$pkgdir/usr"
install -d "$pkgdir"/usr
cp -rf "$srcdir"/$pkgname-$_commit/usr "$pkgdir" # Copy configuration files from the extracted tarball
cp -rf "$srcdir/${pkgname}-${pkgver}/etc" "$pkgdir/etc"
cp -rf "$srcdir/${pkgname}-${pkgver}/usr" "$pkgdir/usr"
} }