Package Details: cortile 2.5.2-1

Git Clone URL: https://aur.archlinux.org/cortile.git (read-only, click to copy)
Package Base: cortile
Description: Auto tiling manager with hot corner support for EWMH compliant window managers using the X11 window system.
Upstream URL: https://github.com/leukipp/cortile
Licenses: MIT
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 2
Popularity: 0.164877
First Submitted: 2023-12-27 16:47 (UTC)
Last Updated: 2024-11-03 17:31 (UTC)

Required by (0)

Sources (1)

Latest Comments

yochananmarqos commented on 2024-06-18 19:23 (UTC)

@nearwood: Oops, it's fixed. the install & cp commands were out of order.

FYI, the install -D command creates a directory with 0755 permissions, there's never a need for mkdir in the package function.

nearwood commented on 2024-06-18 18:41 (UTC)

For me, the PKGBUILD was missing a mkdir:

==> Entering fakeroot environment...
==> Starting package()...
cp: cannot create directory '/home/nick/aur/cortile/pkg/cortile/usr/share/doc/cortile': No such file or directory
==> ERROR: A failure occurred in package().
    Aborting...

Adding a mkdir before the cp in package() fixed it:

mkdir -p "$pkgdir/usr/share/doc/$pkgname"
cp -r assets/scripts "$pkgdir/usr/share/doc/$pkgname"