move to latest, and to navithingy-git

This commit is contained in:
creations 2025-01-28 23:28:53 -05:00
parent 59de6087d0
commit b940cff8e6
Signed by: creations
GPG key ID: 8F553AA4320FC711
3 changed files with 50 additions and 45 deletions

View file

@ -1,34 +1,34 @@
pkgbase = navithingy pkgbase = navithingy
pkgdesc = A Navidrome client built with Tauri and Svelte. pkgdesc = A Navidrome client built with Tauri and Svelte.
pkgver = 0.2.0 pkgver = 0.2.0
pkgrel = 1 pkgrel = 1
url = https://github.com/vMohammad24/NaviThingy url = https://github.com/vMohammad24/NaviThingy
arch = x86_64 arch = x86_64
license = MIT license = MIT
depends = nodejs depends = nodejs
depends = npm depends = npm
depends = gtk3 depends = gtk3
depends = gstreamer depends = gstreamer
depends = gst-plugins-base depends = gst-plugins-base
depends = gst-plugins-good depends = gst-plugins-good
depends = gst-plugins-bad depends = gst-plugins-bad
depends = gst-plugins-ugly depends = gst-plugins-ugly
makedepends = git makedepends = git
makedepends = nodejs makedepends = nodejs
makedepends = npm makedepends = npm
makedepends = rustup makedepends = rustup
makedepends = pkg-config makedepends = pkg-config
makedepends = clang makedepends = clang
makedepends = lld makedepends = lld
makedepends = webkit2gtk-4.1 makedepends = webkit2gtk-4.1
makedepends = openssl makedepends = openssl
makedepends = openssl-1.1 makedepends = openssl-1.1
makedepends = fuse2 makedepends = fuse2
makedepends = glib2 makedepends = glib2
makedepends = zlib makedepends = zlib
makedepends = patchelf makedepends = patchelf
optdepends = libappindicator-gtk3: System tray support optdepends = libappindicator-gtk3: System tray support
optdepends = gst-plugin-pipewire: Required for PipeWire-based audio playback optdepends = gst-plugin-pipewire: Required for PipeWire-based audio playback
source = git+https://github.com/vMohammad24/NaviThingy.git#tag=NaviThingy0.2.0 source = git+https://github.com/vMohammad24/NaviThingy.git
sha256sums = SKIP sha256sums = SKIP
install = navithingy.install install = navithingy.install

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
src src
pkg pkg
navithingy NaviThingy
navithingy-* navithingy-*

View file

@ -1,29 +1,34 @@
# Maintainer: creations <creations@creations.works> # Maintainer: creations <creations@creations.works>
pkgname=navithingy pkgname=navithingy-git
pkgver=0.2.0 pkgver=0.2.0
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')
url="https://github.com/vMohammad24/NaviThingy" 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')
source=("$pkgname::git+https://github.com/vMohammad24/NaviThingy.git#tag=NaviThingy$pkgver") source=("git+https://github.com/vMohammad24/NaviThingy.git")
sha256sums=('SKIP') sha256sums=('SKIP')
install="$pkgname.install" install="$pkgname.install"
pkgver() {
cd "$srcdir/NaviThingy"
git describe --tags --abbrev=0 | sed 's/^NaviThingy//'
}
prepare() { prepare() {
cd "$srcdir/$pkgname" cd "$srcdir/NaviThingy"
rustup default stable rustup default stable
rustup update stable rustup update stable
rustup target add x86_64-unknown-linux-gnu rustup target add x86_64-unknown-linux-gnu
npm install npm install
} }
build() { build() {
cd "$srcdir/$pkgname" cd "$srcdir/NaviThingy"
export RUSTFLAGS="-C link-arg=-fuse-ld=lld" export RUSTFLAGS="-C link-arg=-fuse-ld=lld"
export CC=clang export CC=clang
@ -34,7 +39,7 @@ build() {
} }
package() { package() {
cd "$srcdir/$pkgname" cd "$srcdir/NaviThingy"
install -d "$pkgdir/usr/bin" install -d "$pkgdir/usr/bin"
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"
@ -51,9 +56,9 @@ Categories=Audio;Music;
EOF EOF
# Install icons # Install icons
if [ -d "$srcdir/$pkgname/static" ]; then if [ -d "$srcdir/NaviThingy/static" ]; then
install -Dm644 "$srcdir/$pkgname/static/favicon.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/navithingy.png" install -Dm644 "$srcdir/NaviThingy/static/favicon.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/navithingy.png"
install -Dm644 "$srcdir/$pkgname/static/logo.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/navithingy.svg" install -Dm644 "$srcdir/NaviThingy/static/logo.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/navithingy.svg"
fi fi
} }
@ -64,6 +69,6 @@ optdepends=(
check() { check() {
echo "Skipping check() due to svelte-check issue." echo "Skipping check() due to svelte-check issue."
# cd "$srcdir/$pkgname" # cd "$srcdir/NaviThingy"
# npm run check # npm run check
} }