blob: 4116ff6342475cab4dfd22b691abd14e2a600548 (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=airisp-next-git
pkgver=0.2.0.r0.g23010ec
pkgrel=8
pkgdesc="An ISP tool for Air MCU (Rust)"
arch=($CARCH)
url="https://github.com/Air-duino/AirISP-next"
license=('custom')
provides=(${pkgname%-git})
conflicts=(${pkgname%-git})
replaces=()
depends=(
cairo
gcc-libs
gdk-pixbuf2
glibc
glib2
gtk3
libsoup
pango
systemd-libs
hicolor-icon-theme
libusb
webkit2gtk)
makedepends=(
cargo
cargo-tauri
# gendesk
git
hidapi
libayatana-appindicator
librsvg
rust
# npm
pnpm
pkgconf
)
backup=()
options=('!lto' '!debug' '!strip')
install=
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
(
set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare() {
git -C "${srcdir}/${pkgname}" clean -dfx
cd "${srcdir}/${pkgname}/src-tauri"
cargo fetch --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "${srcdir}/${pkgname}/"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
pnpm install
cd src-tauri
cargo build --release
# pnpm tauri build
}
# check() {
# cd "${srcdir}/${pkgname}/"
# export RUSTUP_TOOLCHAIN=stable
# pnpm test
# }
package() {
cd "${srcdir}/${pkgname}/"
export RUSTUP_TOOLCHAIN=stable
# Install your project files into the package directory
# install -Dm644 package.json "$pkgdir/usr/share/$pkgname/package.json"
# install -Dm644 dist/* -t "$pkgdir/usr/share/$pkgname/dist/"
# Create a symlink to your executable
# ln -s "/usr/share/$pkgname/dist/AirISP-next" "$pkgdir/usr/bin/${pkgname%-git}"
install -Dm0755 src-tauri/target/release/AirISP-next "$pkgdir/usr/bin/${pkgname%-git}"
# icon
# local _icon
# for _icon in 32 128; do
# install -Dm0644 src-tauri/icons/${_icon}x${_icon}.png \
# ${pkgdir}/usr/share/icons/hicolor/${_icon}x${_icon}/apps/${pkgname%-git}.png
# done
# desktop file
install -Dvm644 src-tauri/icons/icon.png ${pkgdir}/usr/share/icons/hicolor/512x512/apps/${pkgname%-git}.png
install -Dvm644 /dev/stdin ${pkgdir}/usr/share/applications/${pkgname%-git}.desktop <<EOF
[Desktop Entry]
Categories=
Comment=${pkgdesc}
Exec=${pkgname%-git}
Icon=${pkgname%-git}.png
Name=${pkgname%-git}
Terminal=false
Type=Application
EOF
# gendesk -q -f -n --pkgname="${pkgname%-git}" --name="${pkgname%-git}" --comment="${pkgdesc}" --categories="Development;Utility" --exec="${pkgname%-git}" --icon="${pkgname%-git}.png"
# install -Dm0644 "${pkgname%-git}.desktop" -t "${pkgdir}/usr/share/applications"
}
|