blob: 6557d8e5d3b40a3e01ec68c83422b96ea5042912 (
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
|
# Maintainer: Christopher Schnick <crschnick@xpipe.io>
_fullver="13.1.1"
pkgname="xpipe"
pkgver="13.1.1"
pkgrel="1"
epoch=1
pkgdesc="Your entire server infrastructure at your fingertips"
arch=('x86_64' 'aarch64')
url="https://github.com/xpipe-io/${pkgname}"
license=('unknown')
groups=()
# From https://aur.archlinux.org/packages/java-openjfx
depends=(
cairo
freetype2
gdk-pixbuf2
glib2
gperf
gtk3
libgl
libx11
libxtst
pango
util-linux
socat
hicolor-icon-theme
)
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!debug !strip)
install=
changelog="${pkgname}.changelog"
source=("logo_48x48.png" "logo_256x256.png" "${pkgname}.desktop")
source_x86_64=("${pkgname}-${_fullver}-x86_64.tar.gz::https://github.com/xpipe-io/${pkgname}/releases/download/${_fullver}/xpipe-portable-linux-x86_64.tar.gz")
source_aarch64=("${pkgname}-${_fullver}-arm64.tar.gz::https://github.com/xpipe-io/${pkgname}/releases/download/${_fullver}/xpipe-portable-linux-arm64.tar.gz")
noextract=()
sha512sums=("SKIP" "SKIP" "SKIP")
sha512sums_x86_64=("SKIP")
sha512sums_aarch64=("SKIP")
package() {
install -dm0755 "$pkgdir/opt"
cp -a "$srcdir/xpipe-${_fullver}" "$pkgdir/opt/$pkgname"
install -Dm0644 -t "$pkgdir/usr/share/applications/" "$srcdir/${pkgname}.desktop"
install -d "$pkgdir/usr/share/icons/hicolor/48x48/apps"
cp -a "$srcdir/logo_48x48.png" "$pkgdir/usr/share/icons/hicolor/48x48/apps/${pkgname}.png"
install -d "$pkgdir/usr/share/icons/hicolor/256x256/apps"
cp -a "$srcdir/logo_256x256.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/${pkgname}.png"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/cli/bin/xpipe" "$pkgdir/usr/bin/${pkgname}"
install -d "$pkgdir/etc/bash_completion.d"
ln -s "/opt/$pkgname/cli/xpipe_completion" "$pkgdir/etc/bash_completion.d/${pkgname}"
}
|