summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cb292ae8fad881f81dd7c7d6e6e6ecd87d50d5ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: VDawg @ vdawg  tuta  io
pkgname=moo
pkgver=0.0.2
pkgrel=3
pkgdesc="Sick terminal music player with smart playlists."
arch=('x86_64' 'aarch64')
url="https://github.com/vdawg-git/moo/"
license=('MIT')
depends=('mpv')
makedepends=('bun')
provides=()
options=()
conflicts=()
replaces=()
source=("$pkgname-v$pkgver.tar.gz::https://github.com/vdawg-git/$pkgname/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('SKIP') 

build() {
	cd "src/$pkgname-$pkgver"
	bun install
	bun compile
}

package() {
    cd "src/$pkgname-$pkgver"
    install -Dm755 ./dist/moo "$pkgdir/usr/bin/moo"
}