diff options
Diffstat (limited to 'community/notmuch/build')
-rwxr-xr-x | community/notmuch/build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/community/notmuch/build b/community/notmuch/build new file mode 100755 index 00000000..08beaa86 --- /dev/null +++ b/community/notmuch/build @@ -0,0 +1,10 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --without-docs \ + --without-api-docs \ + --without-ruby || : + +make +make DESTDIR="$1" install |