diff --git a/.SRCINFO b/.SRCINFO deleted file mode 100644 index c65368f..0000000 --- a/.SRCINFO +++ /dev/null @@ -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 diff --git a/PKGBUILD b/PKGBUILD deleted file mode 100644 index f8aec8f..0000000 --- a/PKGBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# Maintainer: Miskolczi Richárd -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" -}