Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

network/neomutt: Updated for version 20250113. #9377

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions network/neomutt/README
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ for selecting groups of messages.
Optional dependencies:

* notmuch - fast mail indexer for maildir
* lua - Powerful, fast, light-weight, embeddable scripting language.
* lua53 - Powerful, fast, light-weight, embeddable scripting language
NOTE: this won't work if you have multiple versions of lua installed.

This script builds neomutt without optional support
for idn2, notmuch, lua, and kyotocabinet.
Some of these can can be re-enabled with:
for idn2, notmuch, lua and kyotocabinet.
You can be enabled with:

# USENOTMUCH=yes USELUA=yes ./neomutt.SlackBuild
13 changes: 6 additions & 7 deletions network/neomutt/neomutt.SlackBuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Slackware build script for neomutt
#
# Copyright 2016-2022 Corrado Franco (https://corradofranco.it)
# Copyright 2016-2025 Corrado Franco (https://corradofranco.it)
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
Expand All @@ -25,14 +25,10 @@
#
# Latest version of this SlackBuild at https://github.com/conraid/SlackBuilds

# 20241024 bkw: Modified by SlackBuilds.org, BUILD=2:
# - update README for new lua.
# - bump BUILD due to lua upgrade to 5.4; no script changes.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=neomutt
VERSION=${VERSION:-20240425}
VERSION=${VERSION:-20250113}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
Expand All @@ -45,6 +41,9 @@ if [ -z ${ARCH:=""} ]; then
esac
fi

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
Expand Down Expand Up @@ -123,7 +122,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done

# install desktop file and icons
# Install desktop file and icons
install -Dm644 $CWD/files/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop
for i in 32 64 128 256; do
install -Dm644 data/logo/$PRGNAM-$i.png $PKG/usr/share/icons/hicolor/${i}x${i}/apps/$PRGNAM.png
Expand Down
6 changes: 3 additions & 3 deletions network/neomutt/neomutt.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PRGNAM="neomutt"
VERSION="20240425"
VERSION="20250113"
HOMEPAGE="https://github.com/neomutt/neomutt"
DOWNLOAD="https://github.com/neomutt/neomutt/archive/20240425/neomutt-20240425.tar.gz"
MD5SUM="136fa78c0ded07adb227446bdd5842c1"
DOWNLOAD="https://github.com/neomutt/neomutt/archive/20250113/neomutt-20250113.tar.gz"
MD5SUM="6dc9493283c3f084ce1aed3f49568116"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
Expand Down