blob: 5d1d708b3359fce23b61b93aa72b2d52a4dd891d (
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
|
# Maintainer mattf <matheusfillipeag@gmail.com>
pkgname=warpd-wayland
pkgver=v1.3.5
_gitname=warpd
pkgrel=1
pkgdesc="A modal keyboard driven interface for mouse manipulation."
license=('MIT')
arch=('x86_64')
makedepends=(git)
conflicts=(warpd-git warpd warpd-wayland-git)
depends=(wayland libxkbcommon cairo)
provides=(warpd)
source=(
"${pkgname}.tar.gz::https://github.com/rvaiya/warpd/archive/refs/tags/${pkgver}.zip"
)
md5sums=('e55d892233a5bfedeab4b696a07cc431')
build () {
cd "warpd-${pkgver/v/}"
make
make man
}
package () {
cd "warpd-${pkgver/v/}"
make install DESTDIR="$pkgdir" PREFIX="/usr"
}
|