summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 02bcd15a0d6f5b121a630a719d930569ca393b26 (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
# Maintainer: Christian Muehlhaeuser <muesli at gmail dot com>
# Maintainer: MOTT <ted.jameson at pm dot me>
pkgname=telephant-git
pkgver=20190525
pkgrel=1
epoch=
pkgdesc="A lightweight but modern Mastodon client, written in Go & QML"
arch=('x86_64')
url="https://github.com/muesli/telephant"
license=('MIT')
groups=()
depends=('qt5-base')
makedepends=('go' 'pkgconf' 'qt5-tools' 'git' 'libpulse' 'glib2' 'mesa')
checkdepends=()
optdepends=()
provides=("telephant")
conflicts=("telephant")
replaces=()
backup=()
options=()
install=
noextract=()
#source=($pkgname::git://github.com/muesli/telephant.git)
#md5sums=("SKIP")

build() {
	export GOPATH="$srcdir"/gopath
	export QT_PKG_CONFIG=true
	export QT_DIR=/usr

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

	# Building 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"
}