summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2fb21b7ce037e63e3bcc57336d4cab774eb0f3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=gtkcord3-git
_pkgname=gtkcord3
pkgver=indev
pkgrel=3
pkgdesc='Discord client written in go and gtk3'
arch=('any')
url='https://github.com/diamondburned/gtkcord3'
license=('GPL3')
makedepends=('git' 'go')
source=('git+https://github.com/diamondburned/gtkcord3')
sha1sums=('SKIP')

build() {
	cd $_pkgname
	go build
}

package() {
	cd $_pkgname
	install -Dm755 "$_pkgname" "$pkgdir/usr/bin/$_pkgname"
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
}