blob: 3fc69a81bad5964dba860c1fa3668f107aebce0b (
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
28
|
# Maintainer: VDawg @ vdawg tuta io
pkgname=moo
pkgver=0.0.8
pkgrel=1
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=('!strip') # stripping symboles breaks the bun binary
conflicts=()
replaces=()
source=("$pkgname-v$pkgver.tar.gz::https://github.com/vdawg-git/$pkgname/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cd "$pkgname-$pkgver"
bun install
bun compile
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 ./dist/moo "$pkgdir/usr/bin/moo"
}
|