mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
30 lines
817 B
Bash
30 lines
817 B
Bash
# This is an example PKGBUILD file. Use this as a start to creating your own,
|
|
# and remove these comments. For more information, see 'man PKGBUILD'.
|
|
# NOTE: Please fill out the license field for your package! If it is unknown,
|
|
# then please put 'unknown'.
|
|
|
|
# Maintainer: KRTirtho <krtirho@gmail.com>
|
|
pkgname=spotube-bin
|
|
pkgver=0.0.3
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc="A music streaming app combining the power of Spotify & Youtube"
|
|
arch=(x86_64)
|
|
url="https://github.com/KRTirtho/spotube/"
|
|
license=('MIT')
|
|
groups=()
|
|
depends=('mpv' 'youtube-dl')
|
|
makedepends=()
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=./install.sh
|
|
changelog=
|
|
source=("$url/releases/download/v$pkgver/Spotube_linux-x86_64-v$pkgver.zip")
|
|
noextract=()
|
|
md5sums=(ae9c6cbbe97f6dcc15a7c7dc86091174)
|
|
validpgpkeys=() |