Package Details: nmh 1.8-2

Git Clone URL: https://aur.archlinux.org/nmh.git (read-only, click to copy)
Package Base: nmh
Description: Powerful electronic mail handling system, based on a set of command-line utilities.
Upstream URL: http://www.nongnu.org/nmh/
Licenses: BSD
Conflicts: nmh
Submitter: None
Maintainer: aksr
Last Packager: aksr
Votes: 25
Popularity: 0.000000
First Submitted: 2006-02-27 04:20 (UTC)
Last Updated: 2024-01-11 07:21 (UTC)

Latest Comments

Aelius commented on 2023-12-24 05:41 (UTC)

Here's the fix

diff --git a/PKGBUILD b/PKGBUILD
index 1a92ca2..eb4ee77 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -54,5 +54,5 @@ build() {
 package() {
        cd "$srcdir/$pkgname-$pkgver"
        make DESTDIR="$pkgdir/" install
-       install -D -m644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/"
+       install -D -m644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
 }

Aelius commented on 2023-12-24 05:11 (UTC)

There seems to be a packaging error:

install: cannot create regular file '/home/aelius/.cache/yay/nmh/pkg/nmh/usr/share/licenses/nmh/': Not a directory

loebl commented on 2017-11-22 22:07 (UTC)

updated, nice. Thank you!

loebl commented on 2017-11-10 13:14 (UTC) (edited on 2017-11-10 13:17 (UTC) by loebl)

currently configure does not recognize OpenSSL 1.1. Similiar to this bug: https://bugs.archlinux.org/task/53809 necessary patch: --- configure.ac 2014-05-16 05:03:13.000000000 +0200 +++ configure.ac.new 2017-11-10 15:05:50.422571460 +0100 @@ -481,7 +481,7 @@ AC_CHECK_HEADER([openssl/ssl.h], , [AC_MSG_ERROR([openssl/ssl.h not found])]) AC_CHECK_LIB([crypto], [BIO_write], [TLSLIB="-lcrypto"], [AC_MSG_ERROR([OpenSSL crypto library not found])]) - AC_CHECK_LIB([ssl], [SSL_library_init], [TLSLIB="-lssl $TLSLIB"], + AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [TLSLIB="-lssl $TLSLIB"], [AC_MSG_ERROR([OpenSSL library not found])],[$TLSLIB])], [TLSLIB=]) AC_SUBST([TLSLIB]) after that, just run autogen.sh and proceed with makepkg. It's just one line, but if you want to I can send you the patch file. Also it seems nmh 1.7 is incoming.

Ocypheum commented on 2016-01-06 03:51 (UTC)

Something is wrong with this package. All the config files end up in /etc/ instead of in /etc/nmh/.

ankz commented on 2012-05-19 04:10 (UTC)

Please consider replacing '$startdir/src' with '$srcdir' in the PKGBUILD to support a non-default BUILDDIR in /etc/makepkg.conf. Thank you.