aboutsummaryrefslogtreecommitdiff
path: root/community/notmuch/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-07-16 17:41:02 +0300
committerCem Keylan <cem@ckyln.com>2021-07-16 17:41:02 +0300
commit619df6c7b2522b8384765ae54efac4f85131054b (patch)
treeabe74e859280c4f0e33d233e017d9bc94bdd8d8d /community/notmuch/build
parent15b02517c246fa43582dc9ea3afe48c115f6821c (diff)
downloadrepository-619df6c7b2522b8384765ae54efac4f85131054b.tar.gz
notmuch, talloc: drop packages
Diffstat (limited to 'community/notmuch/build')
-rwxr-xr-xcommunity/notmuch/build18
1 files changed, 0 insertions, 18 deletions
diff --git a/community/notmuch/build b/community/notmuch/build
deleted file mode 100755
index dcb41b69..00000000
--- a/community/notmuch/build
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh -e
-
-BASHCMD=$(command -v bash || command -v sh)
-export BASHCMD
-
-./configure \
- --prefix=/usr \
- --without-docs \
- --without-api-docs \
- --without-ruby
-
-make
-make DESTDIR="$1" install
-
-# For some reason, notmuch doesn't accept the --enable-static/shared options.
-# It builds a static library when you run 'make', but it doesn't install the
-# built library. Confusing.
-install -Dm755 lib/libnotmuch.a "$1/usr/lib/libnotmuch.a"