diff options
author | VDawg | 2025-02-15 19:26:35 +0100 |
---|---|---|
committer | VDawg | 2025-02-15 19:26:35 +0100 |
commit | 0b2c8a80da3bc65427357e5bb7c5f147e4420354 (patch) | |
tree | 1d9ee7e761d734ef47bdda1f206db1963fdf96ff /PKGBUILD | |
parent | 38ba40ff6ba54a4303ab840a59e7eaf89ad9aeab (diff) | |
download | aur-0b2c8a80da3bc65427357e5bb7c5f147e4420354.tar.gz |
use relative paths
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ # Maintainer: VDawg @ vdawg tuta io pkgname=moo pkgver=0.0.2 -pkgrel=3 +pkgrel=4 pkgdesc="Sick terminal music player with smart playlists." arch=('x86_64' 'aarch64') url="https://github.com/vdawg-git/moo/" @@ -16,12 +16,12 @@ source=("$pkgname-v$pkgver.tar.gz::https://github.com/vdawg-git/$pkgname/archive sha256sums=('SKIP') build() { - cd "src/$pkgname-$pkgver" + cd "./src/$pkgname-$pkgver" bun install bun compile } package() { - cd "src/$pkgname-$pkgver" + cd "./src/$pkgname-$pkgver" install -Dm755 ./dist/moo "$pkgdir/usr/bin/moo" } |