blob: 19bafeb38117841601d30cc6b6a1a657a3010d1c (
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
|
# Maintainer: Alisson Lauffer <alissonvitortc@gmail.com>
pkgname=paper-plane
pkgver=0.1.0beta.5
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)
_commit=0cb40abfec19562a2e5b15b916b738cebb3645e3 # tags/v0.1.0-beta.5^0
source=("git+$url.git#commit=$_commit")
sha256sums=('SKIP')
prepare() {
cd "$pkgname"
}
pkgver() {
cd "$pkgname"
git describe --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
}
|