Package Details: gforth-git 20240821-1

Git Clone URL: https://aur.archlinux.org/gforth-git.git (read-only, click to copy)
Package Base: gforth-git
Description: Gforth is the Forth implementation of the GNU project.
Upstream URL: https://www.gnu.org/software/gforth
Licenses: GPLv3
Conflicts: gforth
Provides: gforth
Submitter: b4283
Maintainer: fiz
Last Packager: fiz
Votes: 1
Popularity: 0.000000
First Submitted: 2018-02-06 16:24 (UTC)
Last Updated: 2024-08-24 12:32 (UTC)

Dependencies (6)

Required by (1)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

b4283 commented on 2018-11-04 16:09 (UTC)

Great. Let me merge that real quick. Thanks for the inputs!!

backerman commented on 2018-11-04 02:00 (UTC) (edited on 2018-11-04 02:00 (UTC) by backerman)

Needs to build info pages. This patch will do it (mostly - doesn't package non-info formats):

diff --git a/PKGBUILD b/PKGBUILD
index 2b647f8..4f26c3a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 pkgname=gforth-git
-pkgver=20180206
+pkgver=20181103
 pkgrel=1
 pkgdesc="Gforth is the Forth implementation of the GNU project."
 arch=(i686 x86_64)
 url="https://www.gnu.org/software/gforth"
 license=('GPLv3')
 depends=()
-makedepends=("make" "git" "gforth")
+makedepends=("make" "git" "gforth" "texinfo")
 provides=("gforth")
 conflicts=("gforth")
 source=('git+https://git.savannah.gnu.org/git/gforth.git')
@@ -21,7 +21,9 @@ build() {
        cd "$srcdir/gforth"
        ./autogen.sh
        ./configure --prefix=/usr
-       make -j $(nproc)
+       make -j $(nproc) && \
+       make -j $(nproc) doc && \
+  make -j $(nproc) more
 }

 check() {