summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 424f2f9129e1fc508cf49144f94b8ae9749eb1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=thebeat
pkgver=4.1
pkgrel=1
pkgdesc="Audio Player"
arch=("x86_64" "aarch64")
url="https://github.com/libcontemporary/thebeat"
license=('GPL3')
depends=('libcontemporary' 'libthefrisbee' 'taglib' 'gstreamer')
makedepends=('git' 'qt6-tools' 'cmake' 'clang')
optdepends=('cdrdao: for CD burning')
source=("thebeat-$pkgver"::"https://github.com/vicr123/theBeat/archive/v$pkgver.tar.gz")
sha256sums=('319e0e71fb6cf185cace7f7167d20c1661cc8a29d4092d7741cbbd2016d5ae2c')

build() {
	cmake -B build -S "theBeat-$pkgver" \
		-DCMAKE_INSTALL_PREFIX=/usr
	cmake --build build
}

package() {
	DESTDIR="$pkgdir" cmake --install "build"
}