From: Tomas Volf <~@wolfsden.cz>
To: Marc Coquand <marc@mccd.space>
Cc: help-guix@gnu.org
Subject: Re: Changing the prefix for this libpg_query package
Date: Sun, 25 Feb 2024 15:04:20 +0100 [thread overview]
Message-ID: <ZdtI5I0shABJgD54@ws> (raw)
In-Reply-To: <c0084bcb13b107b6407d2e9697aafbb59effbd4e.1708458383.git.marc@mccd.space>
[-- Attachment #1: Type: text/plain, Size: 4685 bytes --]
On 2024-02-20 13:46:24 -0600, Marc Coquand wrote:
> Hey everyone!
>
> I am new to Guix, guile, make and trying to create a package.
>
> I have a functioning patch, attached, but it is not writing to the correct
> location.
>
> Currently, it is writing to out/usr/local/, which makes sense, because I can
> see in the makefile for libpg_query the following on line 311 of its makefile:
>
> prefix = /usr/local
> libdir = $(prefix)/lib
> includedir = $(prefix)/include
>
> I know I need to change the prefix to be the guix out directory, but I
> am not sure how I can substitute these lines. As you can see in the patch
> I attached, I tried to set it as a build flag. However, this did not work.
>
> Any helpers on how to resolve this? :)
>
> Sincerely,
> Marc
>
> ---
> gnu/packages/libpg_query.scm | 63 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 63 insertions(+)
> create mode 100644 gnu/packages/libpg_query.scm
>
> diff --git a/gnu/packages/libpg_query.scm b/gnu/packages/libpg_query.scm
> new file mode 100644
> index 0000000000..353762554b
> --- /dev/null
> +++ b/gnu/packages/libpg_query.scm
> @@ -0,0 +1,63 @@
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2024 Marc Coquand <marc@mccd.space>
> +;;;
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix is free software; you can redistribute it and/or modify it
> +;;; under the terms of the GNU General Public License as published by
> +;;; the Free Software Foundation; either version 3 of the License, or (at
> +;;; your option) any later version.
> +;;;
> +;;; GNU Guix is distributed in the hope that it will be useful, but
> +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +;;; GNU General Public License for more details.
> +;;;
> +;;; You should have received a copy of the GNU General Public License
> +;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
> +
> +(define-module (gnu packages libpg_query)
> + #:use-module (gnu packages)
> + #:use-module (gnu packages base)
> + #:use-module (gnu packages commencement)
> + #:use-module (guix packages)
> + #:use-module (guix utils)
> + #:use-module (guix download)
> + #:use-module (guix build-system gnu)
> + #:use-module ((guix licenses) #:prefix license:)
> + )
> +
> +(define-public libpg-query
> + (package
> + (name "libpg-query")
> + (version "16-5.1.0")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "https://github.com/pganalyze/libpg_query/archive/refs/tags/"
> + version ".tar.gz"))
> + (sha256
> + (base32 "1xvdcnqxrvb90kcndxmspnm07p8clnq160rbfsy6djd17mbmpwii"))))
> + (build-system gnu-build-system)
> + (arguments
> + `(#:make-flags (list "build" (string-append "prefix=" (assoc-ref %outputs "out")))
> +
> + #:phases (modify-phases %standard-phases
> + (delete 'configure)
> + (delete 'check)
> + (add-before 'build 'set-additional-paths
> + (lambda* (#:key inputs #:allow-other-keys)
> + (setenv "CC" "gcc")))
> + (replace 'install
> + (lambda* (#:key outputs #:allow-other-keys)
> + (setenv "DESTDIR"
> + (string-append (assoc-ref %outputs "out") "/"))
> + (invoke "make" "install"))))))
So, I am just guessing here, but maybe you need to use the prefix=... also in
here? Since you are directly invoking make install, I would expect the
#:make-flags to not be in effect here. The 'install phase in gnu-build-system
you are replacing looks like this:
(define* (install #:key (make-flags '()) #:allow-other-keys)
(apply invoke "make" "install" make-flags))
> + (inputs (list tar which gcc-toolchain))
> + (home-page "https://github.com/pganalyze/libpg_query")
> + (synopsis
> + "C library for accessing the PostgreSQL parser outside of the server environment")
> + (description
> + "C library for accessing the PostgreSQL parser outside of the server. This library uses the actual PostgreSQL server source to parse SQL queries and return the internal PostgreSQL parse tree.")
> + (license license:bsd-3)))
>
> base-commit: fdbf4192f5eaa7fdb5e6e2e98ada0726c8104824
> --
> 2.43.2
>
>
Have a nice day,
Tomas Volf
--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2024-02-25 14:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-20 19:46 Changing the prefix for this libpg_query package Marc Coquand
2024-02-25 14:04 ` Tomas Volf [this message]
2024-02-25 17:51 ` Felix Lechner via
2024-02-25 20:03 ` Marc Coquand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZdtI5I0shABJgD54@ws \
--to=~@wolfsden.cz \
--cc=help-guix@gnu.org \
--cc=marc@mccd.space \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).