update again for git
This commit is contained in:
parent
b940cff8e6
commit
16c4b29c17
3 changed files with 19 additions and 9 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
src
|
src
|
||||||
pkg
|
pkg
|
||||||
NaviThingy
|
NaviThingy
|
||||||
navithingy-*
|
navithingy-0*
|
||||||
|
navithingy-debug*
|
25
PKGBUILD
25
PKGBUILD
|
@ -1,6 +1,6 @@
|
||||||
# Maintainer: creations <creations@creations.works>
|
# Maintainer: creations <creations@creations.works>
|
||||||
pkgname=navithingy-git
|
pkgname=navithingy-git
|
||||||
pkgver=0.2.0
|
pkgver=0.2.0.r24.18300ce
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A Navidrome client built with Tauri and Svelte."
|
pkgdesc="A Navidrome client built with Tauri and Svelte."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
|
@ -8,15 +8,29 @@ url="https://github.com/vMohammad24/NaviThingy"
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
depends=('nodejs' 'npm' 'gtk3' 'gstreamer' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly')
|
depends=('nodejs' 'npm' 'gtk3' 'gstreamer' 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly')
|
||||||
makedepends=('git' 'nodejs' 'npm' 'rustup' 'pkg-config' 'clang' 'lld' 'webkit2gtk-4.1' 'openssl' 'openssl-1.1' 'glib2' 'zlib' 'patchelf')
|
makedepends=('git' 'nodejs' 'npm' 'rustup' 'pkg-config' 'clang' 'lld' 'webkit2gtk-4.1' 'openssl' 'openssl-1.1' 'glib2' 'zlib' 'patchelf')
|
||||||
|
optdepends=(
|
||||||
|
"libappindicator-gtk3: System tray support"
|
||||||
|
"gst-plugin-pipewire: Required for PipeWire-based audio playback"
|
||||||
|
)
|
||||||
source=("git+https://github.com/vMohammad24/NaviThingy.git")
|
source=("git+https://github.com/vMohammad24/NaviThingy.git")
|
||||||
sha256sums=('SKIP')
|
sha256sums=('SKIP')
|
||||||
install="$pkgname.install"
|
install="$pkgname.install"
|
||||||
|
provides=('navithingy')
|
||||||
|
conflicts=('navithingy')
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
cd "$srcdir/NaviThingy"
|
cd "$srcdir/NaviThingy"
|
||||||
git describe --tags --abbrev=0 | sed 's/^NaviThingy//'
|
local tag
|
||||||
|
tag=$(git describe --tags --abbrev=0 | sed 's/^NaviThingy//' | tr -d 'v')
|
||||||
|
local rev
|
||||||
|
rev=$(git rev-list --count HEAD)
|
||||||
|
local commit
|
||||||
|
commit=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
echo "${tag}.r${rev}.${commit}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
cd "$srcdir/NaviThingy"
|
cd "$srcdir/NaviThingy"
|
||||||
|
|
||||||
|
@ -44,7 +58,7 @@ package() {
|
||||||
install -d "$pkgdir/usr/share/applications"
|
install -d "$pkgdir/usr/share/applications"
|
||||||
install -d "$pkgdir/usr/share/icons/hicolor"
|
install -d "$pkgdir/usr/share/icons/hicolor"
|
||||||
|
|
||||||
install -m755 "src-tauri/target/release/${pkgname}" "$pkgdir/usr/bin/"
|
install -m755 "src-tauri/target/release/navithingy" "$pkgdir/usr/bin/"
|
||||||
|
|
||||||
cat > "$pkgdir/usr/share/applications/navithingy.desktop" <<EOF
|
cat > "$pkgdir/usr/share/applications/navithingy.desktop" <<EOF
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
|
@ -62,11 +76,6 @@ EOF
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
optdepends=(
|
|
||||||
"libappindicator-gtk3: System tray support"
|
|
||||||
"gst-plugin-pipewire: Required for PipeWire-based audio playback"
|
|
||||||
)
|
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
echo "Skipping check() due to svelte-check issue."
|
echo "Skipping check() due to svelte-check issue."
|
||||||
# cd "$srcdir/NaviThingy"
|
# cd "$srcdir/NaviThingy"
|
||||||
|
|
Loading…
Add table
Reference in a new issue