Package Details: fzf-bibtex-git r70.53c49fa-1

Git Clone URL: https://aur.archlinux.org/fzf-bibtex-git.git (read-only, click to copy)
Package Base: fzf-bibtex-git
Description: Fzf for bibtex. Straightforward vim integration.
Upstream URL: https://github.com/msprev/fzf-bibtex
Licenses: GPL
Submitter: sonam
Maintainer: sonam
Last Packager: sonam
Votes: 0
Popularity: 0.000000
First Submitted: 2020-12-29 06:20 (UTC)
Last Updated: 2020-12-29 06:20 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

falsum commented on 2024-07-17 04:46 (UTC)

At least for me, I had to revise the PKGBUILD. More specifically, changing the build and package portions as follows worked for me:

build() {
  cd "${srcdir}/${_pkgname}"
  export GOPATH="$srcdir/build"

  for cmd in bibtex-ls bibtex-markdown bibtex-cite; do
    go install "github.com/msprev/${_pkgname}/cmd/${cmd}@latest"
  done
}

package() {
  install -Dm755 "$GOPATH/bin/bibtex-ls" "$pkgdir/usr/bin/bibtex-ls"
  install -Dm755 "$GOPATH/bin/bibtex-markdown" "$pkgdir/usr/bin/bibtex-markdown"
  install -Dm755 "$GOPATH/bin/bibtex-cite" "$pkgdir/usr/bin/bibtex-cite"
}

sonam commented on 2021-10-11 08:33 (UTC)

Hi @tapia, thanks for the comment! I've just tried to fix this, but the build seems to be failing for other reasons now. As I've stopped using this package a while ago, I hadn't noticed the PKGBUILD isn't functional. I'll try to fix it, but unfortunately my Go skills are pretty lacking, and it might take a few days. If you want to take over maintaining this package, let me know -- I'd be happy to pass it on!

tapia commented on 2021-10-10 12:26 (UTC) (edited on 2021-10-10 12:27 (UTC) by tapia)

Hi, I am getting the following error when trying to install this package:

==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Removing existing $pkgdir/ directory...
==> Starting build()...
missing $GOPATH
==> ERROR: A failure occurred in build().
    Aborting...

error making: fzf-bibtex-git