blob: ece1c3fde392846ea41204c7e7dc4504af4ea938 (
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
|
# Maintainer: NEOAPPS <asd22.info@gmail.com>
pkgname=wyvern-git
pkgver=r4.0e06767
pkgrel=1
pkgdesc="Very minimal Wayland compositor written in Rust"
arch=('any')
url="https://github.com/neoapps-dev/wyvern"
license=('GPL-3.0')
depends=(
systemd
cairo
gcc-libs
glib2
glibc
glslang
libdisplay-info
libdrm
libglvnd
libinput
libliftoff
libx11
libxcb
libxcomposite
libxcursor
libxfixes
libxkbcommon
libxrender
mesa
opengl-driver
pango
pixman
polkit
re2
seatd
systemd-libs
tomlplusplus
util-linux-libs
wayland
wayland-protocols
xcb-proto
xcb-util
xcb-util-errors
xcb-util-image
xcb-util-keysyms
xcb-util-renderutil
xcb-util-wm
xorg-xwayland
)
makedepends=('git' 'cargo' 'rust')
provides=('wyvern')
source=("$pkgname::git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/$pkgname"
cargo build --release
}
package() {
cd "$srcdir/$pkgname"
install -Dm755 target/release/wyvern "$pkgdir/usr/bin/wyvern"
}
|