summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 78be5814e0b844ad9a7998a184ccac43f4be5c43 (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
# Maintainer: Christian Muehlhaeuser <muesli at gmail dot com>
# Maintainer: MOTT <ted.jameson at pm dot me>
pkgname=telephant-git
pkgver=20200303
pkgrel=1
pkgdesc="A lightweight but modern Mastodon client, written in Go & QML"
arch=('x86_64')
url="https://github.com/muesli/telephant"
license=('MIT')
depends=('qt5-base' 'qt5-declarative' 'qt5-graphicaleffects' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-svg' 'qt5-multimedia')
makedepends=('go' 'pkgconf' 'qt5-tools' 'git' 'libpulse' 'glib2' 'mesa')
provides=("telephant")
conflicts=("telephant")
#source=($pkgname::git://github.com/muesli/telephant.git)
#sha256sums=('SKIP')

build() {
	export GOPATH="$srcdir"/gopath
	export PATH="$srcdir"/gopath/bin:$PATH
	export QT_PKG_CONFIG=true

	# Create dirs
	mkdir -p "$srcdir"/gopath

	# Qt Bindings
	go get -v -tags=no_env github.com/therecipe/qt/cmd/...
	#$(go env GOPATH)/bin/qtsetup -test=false

	# Build Telephant
	go get -d -v github.com/muesli/telephant
	cd "$GOPATH"/src/github.com/muesli/telephant

	$(go env GOPATH)/bin/qtdeploy build desktop
}

package() {
	install -Dm755 "gopath/src/github.com/muesli/telephant/deploy/linux/telephant" "$pkgdir/usr/bin/telephant"
	install -Dm644 "gopath/src/github.com/muesli/telephant/assets/telephant.desktop" "$pkgdir/usr/share/applications/telephant.desktop"

	for icon_size in 8 16 32 64 128 256 512; do
		icon_dir="$pkgdir/usr/share/icons/hicolor/${icon_size}x${icon_size}/apps"
		install -d "$icon_dir"
		install -m644 "gopath/src/github.com/muesli/telephant/assets/icons/telephant-${icon_size}.png" "$icon_dir/telephant.png"
	done
}