blob: 9ca0f62483fbb8e9f5ba12fef3f7b296bb3d161d (
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
|
# Maintainer: Kimiblock Moe
pkgname=portable
pkgver=1.3.1
pkgrel=1
epoch=
pkgdesc="Portable Sandboxing framework"
arch=('any')
url="https://github.com/Kraftland/portable"
license=(GPL-3.0-or-later)
provides=(portable)
groups=()
options=(!debug !strip)
makedepends+=()
depends=(
"coreutils"
"awk"
"xxd"
"xorg-xauth"
"xdg-user-dirs"
"xorg-xhost"
"findutils"
"zenity"
"xdg-dbus-proxy"
"nss"
"bubblewrap"
"xcb-util-renderutil"
"xcb-util-keysyms"
"xcb-util-image"
"xcb-util-wm"
"libxkbcommon-x11"
"libxkbcommon"
"libxcb"
"util-linux"
"openssl-1.1"
"libxcb"
"gcc-libs"
"nspr"
"bzip2"
"glibc"
"zlib"
"libxcomposite"
"glib2"
"wayland"
"libxrender"
"libxext"
"alsa-lib"
"dbus"
"libxrandr"
"fontconfig"
"pango"
"freetype2"
"libxfixes"
"cairo"
"libx11"
"expat"
"at-spi2-core"
"libxdamage"
"libdrm"
"mesa"
"hicolor-icon-theme"
"bash"
"lsb-release"
"psmisc"
"wmctrl"
"flatpak-xdg-utils"
"xdg-desktop-portal"
"xdg-desktop-portal-gtk"
)
optdepends=(
'at-spi2-core: accessibility'
'orca: screen reader'
)
makedepends+=(
"libarchive"
)
checkdepends=()
source=(
"portable.tar.gz"
)
function package() {
cd "${srcdir}/portable-${pkgver}"
install -Dm755 portable.sh ${pkgdir}/usr/bin/portable
install -Dm755 open.sh ${pkgdir}/usr/lib/portable/open
install -Dm755 user-dirs.dirs ${pkgdir}/usr/lib/portable/user-dirs.dirs
install -Dm755 mimeapps.list ${pkgdir}/usr/lib/portable/mimeapps.list
install -Dm755 flatpak-info ${pkgdir}/usr/lib/portable/flatpak-info
}
sha256sums=('5075990f137d3c2531a6419bceb73a53c64eba7a0cb0ca8a56f8979710de2881')
|