move to latest, and to navithingy-git
This commit is contained in:
parent
59de6087d0
commit
b940cff8e6
3 changed files with 50 additions and 45 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -29,6 +29,6 @@ pkgbase = navithingy
|
|||
makedepends = patchelf
|
||||
optdepends = libappindicator-gtk3: System tray support
|
||||
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
|
||||
install = navithingy.install
|
||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
src
|
||||
pkg
|
||||
navithingy
|
||||
NaviThingy
|
||||
navithingy-*
|
23
PKGBUILD
23
PKGBUILD
|
@ -1,5 +1,5 @@
|
|||
# Maintainer: creations <creations@creations.works>
|
||||
pkgname=navithingy
|
||||
pkgname=navithingy-git
|
||||
pkgver=0.2.0
|
||||
pkgrel=1
|
||||
pkgdesc="A Navidrome client built with Tauri and Svelte."
|
||||
|
@ -8,12 +8,17 @@ url="https://github.com/vMohammad24/NaviThingy"
|
|||
license=('MIT')
|
||||
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')
|
||||
source=("$pkgname::git+https://github.com/vMohammad24/NaviThingy.git#tag=NaviThingy$pkgver")
|
||||
source=("git+https://github.com/vMohammad24/NaviThingy.git")
|
||||
sha256sums=('SKIP')
|
||||
install="$pkgname.install"
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/NaviThingy"
|
||||
git describe --tags --abbrev=0 | sed 's/^NaviThingy//'
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/$pkgname"
|
||||
cd "$srcdir/NaviThingy"
|
||||
|
||||
rustup default stable
|
||||
rustup update stable
|
||||
|
@ -23,7 +28,7 @@ prepare() {
|
|||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname"
|
||||
cd "$srcdir/NaviThingy"
|
||||
|
||||
export RUSTFLAGS="-C link-arg=-fuse-ld=lld"
|
||||
export CC=clang
|
||||
|
@ -34,7 +39,7 @@ build() {
|
|||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname"
|
||||
cd "$srcdir/NaviThingy"
|
||||
install -d "$pkgdir/usr/bin"
|
||||
install -d "$pkgdir/usr/share/applications"
|
||||
install -d "$pkgdir/usr/share/icons/hicolor"
|
||||
|
@ -51,9 +56,9 @@ Categories=Audio;Music;
|
|||
EOF
|
||||
|
||||
# Install icons
|
||||
if [ -d "$srcdir/$pkgname/static" ]; then
|
||||
install -Dm644 "$srcdir/$pkgname/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"
|
||||
if [ -d "$srcdir/NaviThingy/static" ]; then
|
||||
install -Dm644 "$srcdir/NaviThingy/static/favicon.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/navithingy.png"
|
||||
install -Dm644 "$srcdir/NaviThingy/static/logo.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/navithingy.svg"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -64,6 +69,6 @@ optdepends=(
|
|||
|
||||
check() {
|
||||
echo "Skipping check() due to svelte-check issue."
|
||||
# cd "$srcdir/$pkgname"
|
||||
# cd "$srcdir/NaviThingy"
|
||||
# npm run check
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue