blob: 25b5850b2bdbae8195b2df26e836b792d7b7d5ef (
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
|
# Maintainer: Alisson Lauffer <alissonvitortc@gmail.com>
_pkgname=paper-plane
pkgname=paper-plane-git
pkgver=0.1.0beta.4.r0.g2aa316c
pkgrel=1
pkgdesc='Chat over Telegram on a modern and elegant client'
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url='https://github.com/paper-plane-developers/paper-plane'
license=(GPL3)
depends=(gtk4-paper-plane libadwaita libtd-dev libshumate rlottie-paper-plane-git libtdjson.so)
makedepends=(git meson rust blueprint-compiler appstream)
provides=(paper-plane)
conflicts=(paper-plane)
source=("git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g;s/\.\([a-z]\)/\1/'
}
build() {
# The API ID and hash provided here are for use with Paper Plane only.
# For other projects, please get your own API ID and hash at https://my.telegram.org/apps
arch-meson "$_pkgname" build \
-Dtg_api_id=22303002 \
-Dtg_api_hash=3cc0969992690f032197e6609b296599
meson compile -C build
}
package() {
DESTDIR="${pkgdir}" meson install -C build
}
|