Package Details: zentile 0.1.1-2

Git Clone URL: https://aur.archlinux.org/zentile.git (read-only, click to copy)
Package Base: zentile
Description: On-demand tiling for Openbox, Xfce and other EWMH Complaint Window Managers.
Upstream URL: https://github.com/blrsn/zentile
Licenses: MIT
Conflicts: bin32-zentile, zentile-bin, zentile-git
Provides: zentile
Submitter: m8D2
Maintainer: nearwood
Last Packager: m8D2
Votes: 3
Popularity: 0.000971
First Submitted: 2021-02-15 20:39 (UTC)
Last Updated: 2021-02-16 18:19 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

m8D2 commented on 2022-07-11 18:47 (UTC)

@MW360, I disowned the package as I do not use it anymore, please feel free to adopt it and update the PKGBUILD. Thanks!

MW360 commented on 2022-07-02 22:00 (UTC)

Hi, it seems that the build invocation is missing.

With following patch it seems to work for me:

diff --git a/PKGBUILD b/PKGBUILD
index 19b132b..6380148 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -17,6 +17,7 @@ sha256sums=('d6963f61884cac7233d4fdb2ec53e8d3ff146bd274829220b3d1d2bd449c7732')

 prepare(){
   cd "$pkgname-$pkgver"
+  mkdir -p build
 }

 build() {
@@ -28,6 +29,7 @@ build() {
   export CGO_LDFLAGS="${LDFLAGS}"
   export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
   go get
+  go build -o build
 }

 check() {
@@ -37,5 +39,5 @@ check() {

 package() {
   cd "$pkgname-$pkgver"
-  install -Dm755 "$srcdir"/bin/$pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dm755 build/$pkgname "$pkgdir"/usr/bin/$pkgname
 }