commit 03046cc2eb889be66dc721359b58c4effddad2b3 Author: creations Date: Tue Jan 28 21:59:02 2025 -0500 first commit diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..bb68677 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,71 @@ +# Maintainer: creations +pkgname=navithingy +pkgver=0.2.0 +pkgrel=1 +pkgdesc="A Navidrome client built with Tauri and Svelte. " +arch=('x86_64') +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' 'fuse2' 'glib2' 'zlib' 'patchelf') +source=("$pkgname::git+https://github.com/vMohammad24/NaviThingy.git#tag=NaviThingy$pkgver") +sha256sums=('SKIP') +install="$pkgname.install" + +prepare() { + cd "$srcdir/$pkgname" + + rustup default stable + rustup update stable + rustup target add x86_64-unknown-linux-gnu + + npm install +} + +build() { + cd "$srcdir/$pkgname" + + export RUSTFLAGS="-C link-arg=-fuse-ld=lld" + export CC=clang + export CXX=clang++ + + npm run build + npm run tauri build -- --no-bundle +} + +package() { + cd "$srcdir/$pkgname" + install -d "$pkgdir/usr/bin" + install -d "$pkgdir/usr/share/applications" + install -d "$pkgdir/usr/share/icons/hicolor" + + install -m755 "src-tauri/target/release/${pkgname}" "$pkgdir/usr/bin/" + + cat > "$pkgdir/usr/share/applications/navithingy.desktop" <