summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b843fa6d194a0be6d28b72b5c8d94e89b4d8777d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Maintainer: brionical27 <brionical@proton.me>
pkgname=sonyheadphonesclient-bluetooth-bin
pkgver=1.3.13
pkgrel=1
epoch=
pkgdesc="A fork of Plutoberth's SonyHeadphonesClient by mos9527, now updated with support for Sony's newer Bluetooth/TWS devices"
arch=("x86_64")
url="https://github.com/mos9527/SonyHeadphonesClient"
license=('MIT')
depends=("glfw" "unzip" "gcc-libs" "libglvnd" "glibc" "dbus" "bluez-libs" "glew" "glew-2.1" "dbus")
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=("sonyheadphonesclient-bin")
replaces=()
backup=()
options=()
install=
changelog=
source=("$url/releases/download/$pkgver/SonyHeadphonesClient-linux-x64")
noextract=()
sha256sums=('SKIP')
validpgpkeys=()

# prepare() {
# 	cd "$pkgname-$pkgver"
# 	patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
# }

# build() {
# 	cd "$pkgname-$pkgver"
# 	./configure --prefix=/usr
# 	make
# }

# check() {
# 	cd "$pkgname-$pkgver"
# 	make -k check
# }

package() {
	mv SonyHeadphonesClient-linux-x64 sonyheadphonesclient
	mkdir -p "$pkgdir/usr/bin/"
	mv sonyheadphonesclient "$pkgdir/usr/bin/"
	chmod +x "$pkgdir/usr/bin/sonyheadphonesclient"

	mkdir -p "$pkgdir/usr/share/applications/"
	echo "[Desktop Entry]
	Name=Sony Headphones Client
	GenericName=[XM5+] A Linux client recreating the functionality of the Sony Headphones app
	Exec=sonyheadphonesclient
	Terminal=false
	Type=Application
	Icon=audio-headphones
	Categories=Accessories;" >>"$pkgdir/usr/share/applications/sonyheadphonesclient.desktop"

#	License
#	mkdir -p "$pkgdir/usr/share/licenses/$pkgname/"
#	cp MIT "$pkgdir/usr/share/licenses/$pkgname/"
}