blob: 6a61e90f3b1c35284ca1e40cdc678c7c5f828578 (
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
|
# Maintainer: Markus Meyer <coruja@gmx.de>
_pkgname=zoitechat
pkgname=$_pkgname-git
pkgver=r4919.54514f49
pkgrel=1
pkgdesc="GTK3 IRC client based on HexChat"
arch=('x86_64')
url="https://github.com/ZoiteChat/zoitechat"
license=('GPL-2.0-or-later')
depends=('gtk3' 'libcanberra' 'python-cffi' 'libayatana-appindicator')
makedepends=('git' 'meson' 'glib2-devel' 'perl' 'lua')
optdepends=('pciutils: sysinfo plugin support' 'perl: perl script support' 'lua: lua script support' 'noto-fonts-emoji: emoji support')
provides=('zoitechat')
conflicts=('zoitechat')
source=("git+$url.git")
md5sums=('SKIP')
pkgver() {
cd $_pkgname
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
arch-meson "$_pkgname" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|