perf(users): upgrade versiion and package update

This commit is contained in:
Eshan Roy (Eshanized)
2024-05-01 17:38:58 +05:30
parent 4f9e19d8b6
commit 2da8d2cca6

View File

@@ -1,21 +1,22 @@
# Maintainer: Eshan Roy <eshan@snigdhaos.org> # Maintainer: Eshan Roy <eshan@snigdhaos.org>
pkgname=snigdhaos-assistant pkgname=snigdhaos-assistant
pkgver=1 pkgver=2.0
pkgrel=1 _pkgver=2.0
pkgdesc="A setup utility for Garuda Linux which helps setting up & installing applications" pkgrel=2
pkgdesc="A setup utility for Snigdha OS which helps setting up & installing applications"
arch=('any') arch=('any')
url="https://gitlab.com/snigdhaos/snigdhaos-assistant/" url="https://gitlab.com/snigdhaos/snigdhaos-assistant/"
license=('GPL3') license=('MIT')
depends=('yad' 'wget' 'qt5-base') depends=('yad' 'wget' 'qt5-base')
optdepends=('pamac') optdepends=('pamac')
makedepends=('git' 'cmake') makedepends=('git' 'cmake')
groups=() groups=()
source=("https://gitlab.com/snigdhaos/snigdhaos-assistant/-/archive/1.0/snigdhaos-assistant-1.0.tar.gz") source=("https://gitlab.com/snigdhaos/snigdhaos-assistant/-/archive/$_pkgver/snigdhaos-assistant-$_pkgver.tar.gz")
sha256sums=('SKIP') sha256sums=('SKIP')
build() { build() {
cmake -B build -S "$pkgname" \ cmake -B build -S "$pkgname-$_pkgver" \
-DCMAKE_BUILD_TYPE='Release' \ -DCMAKE_BUILD_TYPE='Release' \
-DCMAKE_INSTALL_PREFIX='/usr' \ -DCMAKE_INSTALL_PREFIX='/usr' \
-Wno-dev -Wno-dev
@@ -26,5 +27,5 @@ package() {
make -C build DESTDIR="$pkgdir" install make -C build DESTDIR="$pkgdir" install
install -d "$pkgdir"/usr install -d "$pkgdir"/usr
cp -rf "$srcdir"/$pkgname/usr "$pkgdir" cp -rf "$srcdir"/$pkgname-$_pkgver/usr "$pkgdir"
} }