Package Details: buck 2022.05.05.01-1

Git Clone URL: https://aur.archlinux.org/buck.git (read-only, click to copy)
Package Base: buck
Description: A fast build system that encourages the creation of small, reusable modules over a variety of platforms and languages.
Upstream URL: https://buckbuild.com
Keywords: automation build development incremental java polyglot reproducible tool
Licenses: Apache
Submitter: jtgoguen
Maintainer: Auerhuhn
Last Packager: Auerhuhn
Votes: 13
Popularity: 0.000044
First Submitted: 2016-04-22 23:09 (UTC)
Last Updated: 2024-04-13 22:35 (UTC)

Dependencies (5)

Required by (1)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3

bcc commented on 2016-11-04 13:15 (UTC)

line 25: /tmp/makepkg/buck/src/../python-test-output.patch: No such file or directory ==> ERROR: A failure occurred in prepare(). Aborting... :: apache-ant is a new orphan package :: failed to build buck package(s)

calcmogul commented on 2016-10-02 22:14 (UTC)

I have the option set in makepkg.conf to build packages in /tmp/makepkg, which causes prepare() to fail to find python-test-output.patch. Since makepkg makes symlinks of sources to ${srcdir}, the following patch fixed the build for me: diff --git a/PKGBUILD b/PKGBUILD index c31e6d0..8f7aa7b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -22,7 +22,7 @@ sha256sums=( prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 <"${srcdir}/../python-test-output.patch" + patch -p1 <"${srcdir}/python-test-output.patch" } build() {