blob: ead9523d2c94bf520254530f4952812315386cff (
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
|
# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
_pkgname='hacki'
pkgname=${_pkgname}
_pkgreponame='Hacki'
pkgver=1.9.2
pkgrel=1
pkgdesc='A Hacker News reader.'
url='https://github.com/Livinglist/Hacki'
arch=('x86_64')
license=('GPL3')
depends=(
'gtk3'
'gstreamer'
'gst-plugins-base-libs'
'libsecret')
makedepends=('flutter-engine' 'git' 'yq')
source=(
"git+${url}.git#tag=v${pkgver}"
"flutter::git+https://github.com/flutter/flutter.git"
"flutter-engine::git+https://github.com/flutter/engine.git")
sha256sums=('SKIP'
'SKIP'
'SKIP')
_srcdir="${_pkgreponame}"
prepare() {
source '/opt/flutter-engine/pkgbuild-prepare.sh'
cd "${_srcdir}"
local dartpkg="$(yq -er .name 'pubspec.yaml')"
flutter create $flutter_select_engine --project-name="${dartpkg}" --platforms=linux --no-pub --no-overwrite .
flutter clean $flutter_select_engine
flutter pub $flutter_select_engine get
}
build() {
source '/opt/flutter-engine/pkgbuild-build.sh'
cd "${_srcdir}"
flutter build linux --release $flutter_select_engine
}
package() {
# Make opt dir
install -dm755 "${pkgdir}/opt/${_pkgname}/"
# License
cd "${_srcdir}"
install -Dm644 'LICENSE' -t "${pkgdir}/usr/share/licenses/${_pkgname}"
# Executable install
cd "build/linux/x64/release/bundle"
local execfile="$(find . -mindepth 1 -maxdepth 1 -type f -perm /111)"
install -Dm755 \
"${execfile}" \
"${pkgdir}/opt/${_pkgname}/${_pkgname}"
# Folders install
cp -r 'lib/' "${pkgdir}/opt/${_pkgname}/"
cp -r 'data/' "${pkgdir}/opt/${_pkgname}/"
# Symlink executable
install -dm755 "${pkgdir}/usr/bin"
ln -s \
"/opt/${_pkgname}/${_pkgname}" \
"${pkgdir}/usr/bin/${_pkgname}"
# Icon for .desktop
install -Dm644 \
"${srcdir}/${_srcdir}/build/flutter_assets/assets/images/hacki_icon.png" \
"${pkgdir}/usr/share/icons/${_pkgname}.png"
# .desktop file
install -Dm644 <(cat << EOF
[Desktop Entry]
Type=Application
Name=Hacki
Exec=/usr/bin/${_pkgname}
Comment=${pkgdesc}
Categories=Internet
Icon=${_pkgname}
EOF
) "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
}
|