Search Criteria
Package Details: jed 0.99.19-6
Git Clone URL: | https://aur.archlinux.org/jed.git (read-only, click to copy) |
---|---|
Package Base: | jed |
Description: | A freely available text editor for Unix and others OS |
Upstream URL: | http://www.jedsoft.org/jed |
Licenses: | |
Submitter: | ilpianista |
Maintainer: | dseg |
Last Packager: | dseg |
Votes: | 42 |
Popularity: | 0.196636 |
First Submitted: | 2010-11-13 15:06 |
Last Updated: | 2017-11-13 06:24 |
Dependencies (5)
- gpm (gpm-vm, gpm-git)
- libxft (libxft-bgra-git, libxft-bgra)
- slang (slang-git)
- libxext (libxext-git) (make)
- libxt (make)
Latest Comments
1 2 Next › Last »
erkin commented on 2019-06-15 05:27
Build fails with
install: cannot stat 'src/objs/rgrep': No such file or directory
Replacing
src/objs
withsrc/${ARCH}objs
(iesrc/x86_64objs
) in PKGBUILD solves this problem.dseg commented on 2017-11-13 06:24
Just added 'armv7h' into supported architecture.
AstroFloyd commented on 2017-11-11 21:52
Yep, builds fine on armv7h.
kseistrup commented on 2016-07-31 12:24
Please add 'armv7h' to the list of architectures.
dseg commented on 2016-06-05 21:48
@nirnakinho
Thank you very much for the patch.
Updated.
nirnakinho commented on 2016-06-02 15:00
@dseg: I've found the cause for the problem: In the sed scripts, you are using the underscore character '_' as delimiter for the s command. However, as my $pkgdir does contain such an underscore, the command has one underscore too many, causing the sed command to fail. I'd recommend using a pipe symbol as seen in the following patch:
Regards,
diff --git a/PKGBUILD b/PKGBUILD
index 9febc94..4a25d98 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,8 +26,8 @@ build() {
./configure --prefix=/usr JED_ROOT=/usr/share/jed
sed \
- -e "s_\(^all.*\)_\1 xjed rgrep_" \
- -e "s_..DEST.*doc_${pkgdir}/usr/share/doc/${pkgname}_g" \
+ -e "s|\(^all.*\)|\1 xjed rgrep|" \
+ -e "s|..DEST.*doc|${pkgdir}/usr/share/doc/${pkgname}|g" \
-i src/Makefile
make
dseg commented on 2016-06-01 15:26
@nimakinho
>In the aur git repo, .SRCINFO has pkgrel = 3 but PKGBUILD has pkgrel=4. Those should match, normally.
Exactly. Very sorry, I haven't noticed that.
By the way, no sed error for me.
nirnakinho commented on 2016-05-31 17:30
@dseg:
In the aur git repo, .SRCINFO has pkgrel = 3 but PKGBUILD has pkgrel=4. Those should match, normally.
Are you sure you have actually committed the latest version of the PKGBUILD? the sed command in the build() function fails with a syntax error. Unless you are using a different version of sed, that should fail with yaourt as well, I've tried plain makepkg and pacaur and both fail.
Regards
dseg commented on 2016-05-29 10:38
@nirnakinho
.SRCINFO is correct, was updated to the latest.
https://aur.archlinux.org/cgit/aur.git/tree/.SRCINFO?h=jed
>I am still seeing the same build error as Voice reported a year ago.
Hmm, I've just checked, and got no errors on build.
$ yaourt -S --noconfirm jed
# buildlog
https://gist.github.com/a2015484ac8da86595ec6fe4842335eb
nirnakinho commented on 2016-05-28 12:36
You forgot to update the .SRCINFO file, and I am still seeing the same build error as Voice reported a year ago.
Regards,