blob: a13fbf8caffbcdeed9f087ee41bb8dfdcde4191e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pkgname=cookie-git
pkgver=1.3
pkgrel=2
pkgdesc="Simple music player TUI"
arch=('x86_64')
url="https://github.com/FedGuy699/Cookie-Player"
license=('GPL')
depends=('ncurses' 'curl')
source=("git+https://github.com/FedGuy699/Cookie-Player.git")
sha256sums=('SKIP')
build() {
g++ -s "$srcdir/Cookie-Player/music.cpp" -o cookie -lncurses -lcurl
}
package() {
install -Dm755 cookie "$pkgdir/usr/bin/cookie"
}
|