blob: 246a042b32c306b00bc5ef592b855386159042bd (
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
# Maintainer:
: ${CARGO_HOME:=$SRCDEST/cargo-home}
: ${_nodeversion:=18}
_pkgname="vdhcoapp"
pkgname="$_pkgname-git"
pkgver=2.0.20.r0.g0b40d3e
pkgrel=2
pkgdesc="Companion application for Video DownloadHelper browser add-on"
url="https://github.com/aclap-dev/vdhcoapp"
license=('GPL-2.0-or-later')
arch=('x86_64')
_source_vdhcoapp() {
makedepends=(
'esbuild'
'jq'
'nvm' # AUR
'yq'
)
options=('emptydirs' '!strip' '!debug')
install="$_pkgname.install"
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=('SKIP')
}
_source_filepicker() {
depends+=(
'gtk3'
)
makedepends+=(
'cargo'
'git'
)
_filepicker_url="https://github.com/paulrouget/static-filepicker"
_filepicker_pkgsrc="vdhcoapp-filepicker"
source+=("$_filepicker_pkgsrc"::"git+$_filepicker_url.git")
sha256sums+=('SKIP')
}
_prepare_vdhcoapp() (
cd "$_pkgsrc"
mv -f app/* .
# create config.json
tomlq . ./config.toml \
| jq '.target.os = "linux"' \
| jq '.target.arch = "amd64"' \
| jq ".meta.version = \"${pkgver%%.r*}\"" \
> src/config.json
# fix path to config.json
sed -E -i src/main.js src/native-autoinstall.js \
-e 's&^(const config = require\('\'')(config.json'\''\);)$&\1./\2&'
)
_prepare_filepicker() (
_cargo_env
cd "$_filepicker_pkgsrc"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
)
_build_vdhcoapp() (
_nvm_env
cd "$_pkgsrc"
npm install --no-package-lock --no-audit --no-fund --prefer-offline
npm install pkg --no-package-lock --no-audit --no-fund --prefer-offline
local _esbuild_options=(
src/main.js
--target=esnext
"--banner:js=const _importMetaUrl=require('url').pathToFileURL(__filename)"
"--define:import.meta.url=_importMetaUrl"
--format=cjs
--bundle
--platform=node
--tree-shaking=true
--alias:electron=electron2
--outfile=bundled.js
)
esbuild "${_esbuild_options[@]}"
local _pkg_options=(
bundled.js
--target "node$_nodeversion-linux-x64"
--output vdhcoapp
)
./node_modules/.bin/pkg "${_pkg_options[@]}"
)
_build_filepicker() (
_cargo_env
cd "$_filepicker_pkgsrc"
cargo build --frozen --release --all-features
)
_package_vdhcoapp() (
cd "$_pkgsrc"
install -Dm755 vdhcoapp -t "$pkgdir/usr/bin/"
install -dm755 "$pkgdir/usr/lib/mozilla/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/opt/chrome/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/chromium/native-messaging-hosts/"
install -dm755 "$pkgdir/etc/opt/edge/native-messaging-hosts/"
)
_package_filepicker() (
_cargo_env
install -Dm755 "$_filepicker_pkgsrc/$CARGO_TARGET_DIR/release/filepicker" -t "$pkgdir/usr/bin/"
)
_cargo_env() {
export CARGO_HOME
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
}
_nvm_env() {
export HOME="$SRCDEST/node-home"
export NVM_DIR="$SRCDEST/node-nvm"
# set up nvm
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
nvm install $_nodeversion
nvm use $_nodeversion
}
_source_vdhcoapp
_source_filepicker
prepare() {
_prepare_vdhcoapp
_prepare_filepicker
}
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'
}
build() {
_build_vdhcoapp
_build_filepicker
}
package() {
depends+=('ffmpeg')
_package_vdhcoapp
_package_filepicker
}
|