From af55d5aa96e7973f243c9bb238f49607407d8f1d Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Sat, 28 May 2022 18:06:18 -0700 Subject: [PATCH 1/3] Create PKGBUILD --- aur/PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 aur/PKGBUILD diff --git a/aur/PKGBUILD b/aur/PKGBUILD new file mode 100644 index 00000000..3c2cf767 --- /dev/null +++ b/aur/PKGBUILD @@ -0,0 +1,33 @@ + +# Maintainer: ThatOneCalculator + +_pkgname="hyprland" +pkgname="${_pkgname}" +pkgver="0.1.1beta" +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) +makedepends=(git cmake ninja gcc gdb) +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vaxerski/hyprland/archive/v${pkgver}.tar.gz") +sha256sums=('SKIP') +options=(!makeflags !buildflags) + +build() { + cd "$srcdir/Hyprland-$pkgver" + make all +} + +package() { + cd "$srcdir/Hyprland-$pkgver" + mkdir -p "${pkgdir}/usr/share/wayland-sessions" + mkdir -p "${pkgdir}/usr/share/hyprland" + install -Dm755 build/Hyprland -t "${pkgdir}/usr/bin" + install -Dm755 hyprctl/hyprctl -t "${pkgdir}/usr/bin" + install -Dm644 assets/*.png -t "${pkgdir}/usr/share/hyprland" + install -Dm644 example/hyprland.desktop -t "${pkgdir}/usr/share/wayland-sessions" + install -Dm644 example/hyprland.conf -t "${pkgdir}/usr/share/hyprland" + install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}" +} From 4cc085ac7581ab644d3b9ebbe038fb9cf6dbc904 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Sat, 28 May 2022 18:07:28 -0700 Subject: [PATCH 2/3] Update PKGBUILD-git --- aur/PKGBUILD-git | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aur/PKGBUILD-git b/aur/PKGBUILD-git index af0ac400..70f86c93 100644 --- a/aur/PKGBUILD-git +++ b/aur/PKGBUILD-git @@ -1,9 +1,9 @@ -# Maintainer: Sander van Kasteel , ThatOneCalculator +# Maintainer: ThatOneCalculator , Sander van Kasteel _pkgname="hyprland" pkgname="${_pkgname}-git" -pkgver=r461.96cdf8f -pkgrel=5 +pkgver=r568.g632d00c +pkgrel=1 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" From 9d3099b21f058fb04a1791d1df900ad4b1115996 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Sat, 28 May 2022 18:08:22 -0700 Subject: [PATCH 3/3] Update PKGBUILD --- aur/PKGBUILD | 1 - 1 file changed, 1 deletion(-) diff --git a/aur/PKGBUILD b/aur/PKGBUILD index 3c2cf767..b5d98887 100644 --- a/aur/PKGBUILD +++ b/aur/PKGBUILD @@ -1,4 +1,3 @@ - # Maintainer: ThatOneCalculator _pkgname="hyprland"