summaryrefslogtreecommitdiff
path: root/libetpan/libetpan_0.33pre.oe
blob: 2a56872d63434822440e5e64419b3563903ef155 (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
DESCRIPTION = "libetpan is a library for mail server functions"
SECTION = "libs"
DEPENDS = "virtual/libc openssl"
RDEPENDS = "libc6 openssl"
PR = "r1"

SRC_URI := http://www.alwins-world.de/oe/${P}.tar.bz2  \
	file://${FILESDIR}/mailstream_socket.patch;patch=1 \
        file://${FILESDIR}/smtptls.patch;patch=1 \

inherit autotools

do_configure() {
	./configure --prefix=${STAGING_DIR}/target --with-openssl=${STAGING_DIR}/target --disable-db --host=${HOST_SYS}

}

do_stage() {
   oe_runmake install
}

do_install() {
   install -d ${D}/${libdir}
   oe_soinstall .libs/libetpan.so.1.0.0 ${D}/${libdir}
}