Uploaded to AUR, these aren't needed anymore

This commit is contained in:
2025-06-19 14:03:29 +02:00
parent db068d66aa
commit 6c78c4da2b
2 changed files with 0 additions and 43 deletions

View File

@@ -1,14 +0,0 @@
pkgbase = hyprland-toggle-tiling-git
pkgdesc = A simple program to toggle tiling and floating modes for windows in the Hyprland Wayland compositor.
pkgver = latest
pkgrel = 1
url = https://github.com/TypoMustakes/hyprland-toggle-tiling
arch = x86_64
license = GPL3
makedepends = cmake
makedepends = git
depends = hyprland
source = git+https://github.com/TypoMustakes/hyprland-toggle-tiling.git
sha256sums = SKIP
pkgname = hyprland-toggle-tiling-git

View File

@@ -1,29 +0,0 @@
# Maintainer: Miskolczi Richárd <miskolczi.richard@protonmail.com>
pkgname=hyprland-toggle-tiling-git
pkgver=latest
pkgrel=1
pkgdesc="A simple program to toggle tiling and floating modes for windows in the Hyprland Wayland compositor."
arch=('x86_64')
url="https://github.com/TypoMustakes/hyprland-toggle-tiling"
source=("git+https://github.com/TypoMustakes/hyprland-toggle-tiling.git")
license=('GPL3')
depends=('hyprland')
makedepends=('cmake' 'git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/hyprland-toggle-tiling"
git rev-parse --short HEAD
}
build() {
cd "$srcdir/hyprland-toggle-tiling"
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
}
package() {
cd "$srcdir/hyprland-toggle-tiling"
install -Dm755 build/htt "$pkgdir/usr/bin/htt"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}