]> git.armaanb.net Git - asd-repo.git/blobdiff - core/mutt/build
The comeback
[asd-repo.git] / core / mutt / build
diff --git a/core/mutt/build b/core/mutt/build
deleted file mode 100755 (executable)
index 4398e11..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh -e
-
-sed -i 's/doc //g' Makefile.in
-
-./configure \
-    --prefix=/usr \
-    --sysconfdir=/etc \
-    --enable-smtp \
-    --with-ssl \
-    --with-sasl \
-    --disable-doc
-
-make
-make DESTDIR="$1" install
-
-rm -f "$1/etc/mime.types" "$1/etc/Mutt*"
-
-for i in *.1 *.5; do
-    section="$(printf "$i" | cut -d '.' -f 3)"
-    install -Dm644 "$i" "$1/usr/share/man/man$section/$i"
-done