blob: 07b69344e60d6c2b47fc6af9d5037e3a6901f698 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Maintainer:
## useful links:
# https://tuba.geopjr.dev/
# https://github.com/GeopJr/Tuba
## options
if [ -n "$_srcinfo" ] || [ -n "$_pkgver" ] ; then
: ${_autoupdate:=false}
else
: ${_autoupdate:=true}
fi
: ${_build_git:=true}
unset _pkgtype
[[ "${_build_git::1}" == "t" ]] && _pkgtype+="-git"
## basic info
_pkgname="tuba"
pkgname="$_pkgname${_pkgtype:-}"
pkgver=0.7.0.r3.g9a449ef
pkgrel=1
pkgdesc='Browse the Fediverse'
url="https://github.com/GeopJr/Tuba"
license=('GPL-3.0-only')
arch=(
aarch64 #ALARM
armv7h #ALARM
i686 #Arch Linux32
x86_64 #Arch Linux
)
# main package
_main_package() {
depends=(
gtk4
gtksourceview5
libadwaita
libgee
libicuuc.so # icu
libsecret
libspelling
webp-pixbuf-loader # gdk-pixbuf2
## implicit
#dconf
#gdk-pixbuf2
#glib2
#glibc
#graphene
#json-glib
#libsoup3
#libxml2
#pango
)
makedepends=(
git
meson
vala
)
if [ "${_build_git::1}" != "t" ] ; then
_update_version
_main_stable
else
_main_git
fi
}
# stable package
_main_stable() {
_pkgsrc="$_pkgname"
source+=("$_pkgsrc"::"git+$url.git#tag=v$_pkgver")
sha256sums+=('SKIP')
pkgver() {
echo "${_pkgver:?}"
}
}
# git package
_main_git() {
provides+=("$_pkgname=${pkgver%%.r*}")
conflicts+=("$_pkgname")
_pkgsrc="$_pkgname"
source+=("$_pkgsrc"::"git+$url.git")
sha256sums+=('SKIP')
pkgver() (
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
)
}
# common functions
build() {
arch-meson "$_pkgsrc" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
depends+=(
hicolor-icon-theme
)
meson install -C build --destdir "$pkgdir"
ln -sf "dev.geopjr.Tuba" "$pkgdir/usr/bin/tuba"
}
## auto update
_update_version() {
: ${_pkgver:=$pkgver}
if [[ "${_autoupdate::1}" != "t" ]] ; then
return
fi
local _response=$(curl -Ssf "$url/releases.atom")
local _tag=$(
printf '%s' "$_response" \
| grep '/releases/tag/' \
| sed -E 's@^.*/releases/tag/(.*)".*$@\1@' \
| grep -Ev '[a-z]{2}' | sort -V | tail -1
)
local _pkgver_new="${_tag#v}"
# update _pkgver
if [ "$_pkgver" != "${_pkgver_new:?}" ] ; then
_pkgver="${_pkgver_new:?}"
fi
}
# execute
_main_package
|