diff options
author | Stuart Mumford | 2022-04-28 10:06:21 +0100 |
---|---|---|
committer | Stuart Mumford | 2022-04-28 10:06:21 +0100 |
commit | 55b65d3c98e588173b7275f2fa7acda869e12ec1 (patch) | |
tree | f630d9d8e08dc1b97571e720cea1e447ea43301c | |
parent | 061e9eecf1b266bba4aec0f715ebc0300382803c (diff) | |
download | aur-55b65d3c98e588173b7275f2fa7acda869e12ec1.tar.gz |
Wayland
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 7 |
3 files changed, 14 insertions, 11 deletions
@@ -1,18 +1,16 @@ -pkgbase = warpd-git +pkgbase = warpd-wayland-git pkgdesc = A small X program which facilitates recursively warping the pointer to different quadrants on the screen. - pkgver = r73.f7d1202 + pkgver = r124.4dcfffc pkgrel = 1 url = https://github.com/rvaiya/warpd arch = x86_64 license = MIT makedepends = git - depends = libxinerama - depends = libxft - depends = libxfixes - depends = libxtst - depends = libx11 + depends = wayland + depends = libxkbcommon + depends = cairo provides = warpd source = git+https://github.com/rvaiya/warpd md5sums = SKIP -pkgname = warpd-git +pkgname = warpd-wayland-git diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..dd2b68608de5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.pkg.tar +warpd/ @@ -1,7 +1,7 @@ # Maintainer mattf <matheusfillipeag@gmail.com> -pkgname=warpd-git -pkgver=r73.f7d1202 +pkgname=warpd-wayland-git +pkgver=r124.4dcfffc _gitname=warpd pkgrel=1 pkgdesc="A small X program which facilitates recursively warping the pointer to different quadrants on the screen." @@ -10,7 +10,7 @@ license=('MIT') arch=('x86_64') md5sums=('SKIP') makedepends=(git) -depends=(libxinerama libxft libxfixes libxtst libx11) +depends=(wayland libxkbcommon cairo) provides=(warpd) source=("git+$url") @@ -21,6 +21,7 @@ pkgver() { build () { cd ${_gitname} + export PLATFORM=wayland make } |