Can't seem finish the package:
==> Starting package()...
make: *** No rule to make target ` '. Stop.
==> ERROR: A failure occurred in package().
Aborting...
Search Criteria
Package Details: 4th 3.62.5-1
Git Clone URL: | https://aur.archlinux.org/4th.git (read-only) |
---|---|
Package Base: | 4th |
Description: | A Forth Compiler |
Upstream URL: | http://www.xs4all.nl/~thebeez/4tH/index.html |
Licenses: | |
Submitter: | None |
Maintainer: | MarcinWieczorek |
Last Packager: | MarcinWieczorek |
Votes: | 11 |
Popularity: | 0.022401 |
First Submitted: | 2007-06-06 18:03 |
Last Updated: | 2017-08-27 12:35 |
Latest Comments
imrehg commented on 2013-11-24 06:54
imrehg commented on 2013-06-16 03:44
jorge_barroso commented on 2013-02-25 15:10
Thanks to Juergen Lorenz <ju@jugilo.de> for he's mail. Some troubles on Makefile.patch have been solved and it already compiles.
jorge_barroso commented on 2013-02-25 15:09
Thanks to Juergen Lorenz <ju@jugilo.de> for he's mail. Some troubles on Makefile.patch have been solved and it already compiles.
Anonymous comment on 2011-05-12 15:43
Put the line:
[ "$CARCH" == "x86_64" ] && ( cp include/* . ; make clean)
before the "make" in build().
haawda commented on 2011-04-02 20:20
added glibc dependency.
haawda commented on 2011-01-07 03:09
applied
Anonymous comment on 2011-01-05 18:10
Some fixes for x86_64:
http://ompldr.org/vNnV2dA/4th-3.61.0-2.src.tar.gz
haawda commented on 2010-12-16 18:58
adopted and updated
Anonymous comment on 2010-08-26 15:36
I haven't been able to verify that it works on x86_64
It's just plain wrong in the packaging section of the PKGBUILD, have you ever succeeded running this?
The first 3 lines shouldn't have the "|| return 1" part, the "\" means the command continues on the next line.
make BINARIES=${pkgdir}/usr/bin \ || return 1
LIBRARIES=${pkgdir}/usr/lib \ || return 1
DOCDIR=${pkgdir}/usr/share/doc \ || return 1
MANDIR=${pkgdir}/usr/share/man install || return 1
should be:
make BINARIES=${pkgdir}/usr/bin \
LIBRARIES=${pkgdir}/usr/lib \
DOCDIR=${pkgdir}/usr/share/doc \
MANDIR=${pkgdir}/usr/share/man install || return 1