blob: d29bb3747cebc42ddf6b6d5cdf17286642b19917 (
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
|
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
_pkgname=flet
pkgname=python-${_pkgname}
pkgver=0.23.2
pkgrel=2
pkgdesc='Easily build realtime web, mobile and desktop apps in your favorite language and securely share them with your team.'
url="https://${_pkgname}.dev/"
license=('Apache')
depends=(
'python-repath'
'python-websocket-client'
'python-watchdog'
'python-oauthlib'
'python-websockets'
'python-httpx'
'python-packaging'
'python-poetry'
'python-copier'
'gtk3'
'gstreamer'
'gst-plugins-base-libs'
'mpv')
makedepends=(
'goreleaser'
'python-build'
'python-installer'
'python-wheel'
'go'
'flutter-engine'
'git'
'patchelf')
arch=('x86_64')
source=(
"${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}-dev/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz"
"flutter::git+https://github.com/flutter/flutter.git"
"flutter-engine::git+https://github.com/flutter/engine.git"
'git+https://chromium.googlesource.com/chromium/tools/depot_tools.git'
'flet-linux.patch')
sha256sums=('3b651de26ee2873efb4fdb0bd39a132232397b6726ee37644a299642690f1667'
'SKIP'
'SKIP'
'SKIP'
'af9718b926a07ac8e8689a2c623fe6921d88d0bcd52263f63848d11175e3b828')
_srcdir="${_pkgname}-${pkgver}"
_engine_version=3.22.2
prepare() {
cd "${_srcdir}"
source '/opt/flutter-engine/pkgbuild-prepare.sh'
patch -p1 -i "${srcdir}/flet-linux.patch"
}
build() {
cd "${_srcdir}"
source '/opt/flutter-engine/pkgbuild-build.sh'
pushd 'client'
flutter clean
flutter pub get
flutter build linux --release
#flutter build web --release
popd
pushd 'server'
APPVEYOR_BUILD_VERSION=${pkgver} goreleaser build --clean --snapshot --single-target
popd
for dir in 'sdk/python/packages/'{flet-core,flet,flet-runtime}; do
pushd "$dir"
python -m build --wheel --no-isolation
popd
done
}
package() {
cd "${_srcdir}"
install -Dm644 'LICENSE' -t "${pkgdir}/usr/share/licenses/${_pkgname}"
for dir in 'sdk/python/packages/'{flet-core,flet,flet-runtime}; do
pushd "$dir"
python -m installer --destdir="$pkgdir" 'dist/'*.whl
popd
done
local _client_installdir="opt/$pkgname"
install -dm0755 "${pkgdir}/${_client_installdir}"
cp -r "client/build/linux/x64/release/bundle/"* "$pkgdir/${_client_installdir}"
ln -s "/${_client_installdir}/flet" "$pkgdir/usr/bin/flet_view"
# Fix runpath
patchelf --set-rpath '$ORIGIN/lib' "$pkgdir/opt/$pkgname/$_pkgname"
for i in "$pkgdir/opt/$pkgname/lib"/*.so; do
[ -z "$(patchelf --print-rpath "$i")" ] && continue
patchelf --set-rpath '$ORIGIN' "$i"
done
#install -dm0755 "$pkgdir/usr/share/$pkgname"
#cp -r 'client/build/web' "$pkgdir/usr/share/$pkgname"
install -Dm0755 "server/dist/fletd_"*'/fletd' -t "${pkgdir}/usr/bin"
cd "$pkgdir/usr/lib/python"*
install -dm0755 'site-packages/flet/bin'
ln -s '/usr/bin/fletd' 'site-packages/flet/bin/fletd'
#ln -s "/usr/share/$pkgname/web" 'site-packages/flet/web'
}
|