blob: a82ad70d1dfcee2f3d5a1160445c72b30de62124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SECTION = "console/network"
DESCRIPTION = "Fetchmail is a free, full-featured, robust, \
well-documented remote-mail retrieval and forwarding utility \
intended to be used over on-demand TCP/IP links \
(such as SLIP or PPP connections)."
SRC_URI = "${DEBIAN_MIRROR}/main/f/${PN}/${PN}_${PV}.orig.tar.gz \
file://configure.patch;patch=1"
inherit autotools
do_configure_prepend () {
if [ ! -e acinclude.m4 ]; then
cat aclocal.m4 > acinclude.m4
fi
}
|