blob: bef696504619f0acde7c5bcdc047e964c350e95a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
cflags{
'-D HAVE_CONFIG_H',
string.format([[-D 'SYSCONFDIR="%s/etc"']], config.prefix),
'-I $dir',
'-isystem $builddir/pkg/libressl/include',
}
exe('msmtp', [[
src/(
conf.c
list.c
msmtp.c
net.c
netrc.c
readbuf.c
smtp.c
stream.c
tools.c
xalloc.c
aliases.c
password.c
base64.c
tls.c
md5.c md5-apps.c
)
$builddir/pkg/libressl/(libssl.a.d libcrypto.a.d)
]], {'pkg/libressl/headers'})
file('bin/msmtp', '755', '$outdir/msmtp')
man{'doc/msmtp.1'}
fetch 'git'
|