From f6b8a966219afc29f2a2b01cb817a9266aed5972 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Tue, 31 May 2022 13:15:57 -0700 Subject: [PATCH] Update PKGBUILD --- aur/PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aur/PKGBUILD b/aur/PKGBUILD index b5d98887b..2d424f99f 100644 --- a/aur/PKGBUILD +++ b/aur/PKGBUILD @@ -2,20 +2,22 @@ _pkgname="hyprland" pkgname="${_pkgname}" -pkgver="0.1.1beta" +pkgver="0.2.0beta" pkgrel=2 pkgdesc="Hyprland is a dynamic tiling Wayland compositor based on wlroots that doesn't sacrifice on its looks." arch=(any) url="https://github.com/vaxerski/Hyprland" license=('BSD') -depends=(libxcb xcb-proto xcb-util xcb-util-keysyms libxfixes libx11 libxcomposite xorg-xinput libxrender pixman wayland-protocols wlroots-git cairo pango) +depends=(libxcb xcb-proto xcb-util xcb-util-keysyms libxfixes libx11 libxcomposite xorg-xinput libxrender pixman wayland-protocols cairo pango) makedepends=(git cmake ninja gcc gdb) source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vaxerski/hyprland/archive/v${pkgver}.tar.gz") sha256sums=('SKIP') +conflicts=("${_pkgname}-git" "${_pkgname}" "${_pkgname}-bin") options=(!makeflags !buildflags) build() { cd "$srcdir/Hyprland-$pkgver" + git submodule update --init make all }