blob: b914d620701d01556110e87e423e57e8912ce131 (
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
|
# Maintainer: iamawacko <iamawacko@protonmail.com>
# Contributor: Trevor Bergeron <aur@sec.gd>
_pkgname=cwtch-ui
pkgname=cwtch
pkgver=1.15.1
pkgrel=1
pkgdesc="UI for Privacy Preserving Infrastructure for Asynchronous, Decentralized and Metadata Resistant Applications"
arch=('x86_64')
url="https://cwtch.im/"
license=('MIT')
conflicts=('cwtch-bin' 'cwtch-git')
depends=('cwtch-autobindings')
makedepends=('flutter' 'ninja')
source=("${_pkgname}-v${pkgver}.tar.gz::https://git.openprivacy.ca/api/v1/repos/cwtch.im/${_pkgname}/archive/v${pkgver}.tar.gz")
sha512sums=('47523a961c4072a92a38a54f887cb1fb3b7a70b67120b02d86d8645c227198470370b1947a86845e216b817d59cf4dd59d5fdfc82850bfc3d42416a43675bec9')
prepare() {
cd "$srcdir/$_pkgname"
# Remove deprecated isAlwaysShown for compat with newer dart SDKs
sed -re 's/(scrollbarTheme: .*)isAlwaysShown: false(, )?/\1/' -i lib/themes/opaque.dart
# Remove Tor binary and libCwtch.so from package script, since we don't vendor them
sed -re 's/^cp( -r)? linux\/(libCwtch\.so|Tor) /#\0/' -i linux/package-release.sh
}
build() {
cd "$srcdir/$_pkgname"
# If using the AUR 'flutter'/'flutter-beta' packages, we need a group.
if ! id -nG | grep -qw flutterusers ; then
if [ "`which flutter`" == "/usr/bin/flutter" ] ; then
warning "You are not in the 'flutterusers' group. The build may fail."
warning "Run 'sudo usermod -a -G flutterusers $USER' and reboot to fix."
warning "You may need to use the flutter-beta package (any channel)."
fi
fi
flutter="flutter --suppress-analytics"
# no way to local-enable this... let's try to clean up after ourselves
$flutter config | grep -qE '^\s*enable-linux-desktop: true\b' || flutter_set_linux=y
flutter_set_linux="$?"
[ "$flutter_set_linux" == "y" ] || $flutter config --enable-linux-desktop
# See https://git.openprivacy.ca/cwtch.im/cwtch-ui/src/branch/trunk/.drone.yml
$flutter pub get
$flutter build linux \
--dart-define BUILD_VER="${pkgver}-${pkgrel}-ARCH" \
--dart-define BUILD_DATE="`date +%G-%m-%d-%H-%M`"
[ "$flutter_set_linux" == "y" ] || $flutter config --no-enable-linux-desktop
}
package() {
cd "$srcdir/$_pkgname"
linux/package-release.sh
cd build/linux/x64/release/bundle
INSTALL_PREFIX="$pkgdir/usr" DESKTOP_PREFIX="/usr" ./install.sh
}
|