blob: a13e855ea64a6ec64bc8da23910eb0c0a2f35ab4 (
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
|
# Description: A C/C++ MIME creation and parser library with support for Unix mbox spools
# URL: https://github.com/jstedfast/gmime
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Packager: Tim Biermann, tbier at posteo dot de
# Depends on:
name=gmime3
version=3.2.15
release=2
source=(https://github.com/jstedfast/gmime/releases/download/$version/gmime-$version.tar.xz)
build() {
cd gmime-$version
./configure \
--prefix=/usr \
--program-prefix=gmime3 \
--disable-crypto \
--disable-introspection \
--disable-smime \
--disable-gtk-doc \
--disable-static \
--without-libidn
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|