blob: 07488874310ff7be2633584982538a8d4db8ed07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require gnutls.inc
LICENSE_${PN}-extra = "GPLv3"
SRC_URI += "\
file://gnutls-openssl.patch;patch=1 \
file://gnutls-texinfo-euro.patch;patch=1 \
file://configure_madness.patch;patch=1 \
file://gnutls-replace-siginterrupt.patch;patch=1 \
"
PR = "${INC_PR}.0"
do_install_append() {
install -d ${D}${datadir}/aclocal
install -m 0644 ${S}/lib/libgnutls.m4 ${D}${datadir}/aclocal/
install -m 0644 ${S}/libextra/libgnutls-extra.m4 ${D}${datadir}/aclocal/
}
|