blob: 4c78b644c131d476858625ba956237b5d7246fd8 (
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
|
# Maintainer:
# Contributor: The one with the braid <info@braid.business>
## links
# https://fluffychat.im/
# https://github.com/krille-chan/fluffychat
: ${_fvm_version:=3.29.3}
: ${FVM_CACHE_PATH:=$SRCDEST/fvm-cache}
export FVM_CACHE_PATH
_pkgname="fluffychat"
pkgname="$_pkgname"
pkgver=1.26.1
pkgrel=2
pkgdesc="The cutest instant messenger in the [matrix]"
url="https://github.com/krille-chan/fluffychat"
license=('AGPL-3.0-only')
arch=('x86_64' 'aarch64')
depends=(
'gtk3'
'libsecret' # flutter_secure_storage
'xdg-user-dirs' # path_provider
'libolm' # for e2ee
'openssl' # sqlite encryption
)
makedepends=(
'clang'
'cmake'
'fvm' # AUR
'git'
'lld'
'llvm'
'ninja'
'patchelf'
)
optdepends=(
'zenity: for flutter_file_picker'
'kdialog: for flutter_file_picker'
)
options=('!strip' '!debug')
_pkgsrc="$_pkgname-$pkgver"
_pkgext="tar.gz"
source=("$_pkgsrc.$_pkgext"::"$url/archive/refs/tags/v$pkgver.$_pkgext")
sha256sums=('ca5d32ae785e8a8688d433a9f16524d217c18b685fcb5b9369700fbfabf3f5f4')
build() {
# fix incompatible C(XX)FLAGS on Arch Linux on ARM
if [ "${CARCH::1}" != "x" ]; then
local i _cflags _cxxflags _unwanted
_cflags=(${CFLAGS})
_cxxflags=(${CXXFLAGS})
_unwanted=(
-fstack-protector-strong
-fstack-clash-protection
)
for i in ${_unwanted[@]}; do
_cflags=(${_cflags[@]//$i/})
_cxxflags=(${_cxxflags[@]//$i/})
done
CFLAGS="${_cflags[@]}"
CXXFLAGS="${_cxxflags[@]}"
fi
cd "$_pkgsrc"
fvm install $_fvm_version
fvm global $_fvm_version
fvm flutter --disable-analytics
#fvm flutter pub upgrade --major-versions
fvm flutter pub get
fvm flutter build linux --no-pub --release
}
package() {
pushd "$_pkgsrc"/build/linux/*/release
cmake -DCMAKE_INSTALL_PREFIX="/usr/lib/$_pkgname" .
DESTDIR="$pkgdir" cmake -P cmake_install.cmake
popd
# reset rpath
patchelf --set-rpath '$ORIGIN' "$pkgdir/usr/lib/$_pkgname/lib"/*.so
# symlink
install -dm755 "$pkgdir/usr/bin"
ln -s "/usr/lib/$_pkgname/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
# license
install -Dm644 "$_pkgsrc/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname/"
# icon
install -Dm644 "$_pkgsrc/assets/favicon.png" "$pkgdir/usr/share/pixmaps/$_pkgname.png"
# launcher
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/$_pkgname.desktop" << END
[Desktop Entry]
Type=Application
Name=FluffyChat
Comment=$pkgdesc
Exec=$_pkgname
Icon=$_pkgname
SingleMainWindow=true
StartupWMClass=chat.fluffy.fluffychat
Terminal=false
StartupNotify=false
Categories=Network;InstantMessaging;Chat;MatrixClient
X-Purism-FormFactor=Workstation;Mobile;
END
}
|