mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
c95e155780
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
35 lines
1.1 KiB
BlitzBasic
35 lines
1.1 KiB
BlitzBasic
SUMMARY = "Proxy libintl"
|
|
HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2"
|
|
LIC_FILES_CHKSUM = "file://src/proxy-libintl/COPYING.LIB.txt;md5=bc400bc21422f9a92e76ec2c5167ca2e"
|
|
|
|
PR = "r1"
|
|
PROVIDES = "virtual/libintl"
|
|
|
|
SRC_URI = " \
|
|
http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/${PN}-dev_${PV}_win32.zip \
|
|
"
|
|
SRC_URI[md5sum] = "aef407c2b97ee829383aadd867c61d1e"
|
|
SRC_URI[sha256sum] = "291ac350cc5eb4a01b0d651ca99fae64cee8a1c06b2005277fab5a4356f9ae91"
|
|
|
|
S = "${WORKDIR}"
|
|
PACKAGES = "${PN} ${PN}-dev"
|
|
FILES_${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a"
|
|
INSANE_SKIP_${PN}-dev = "staticdev"
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
CFLAGS_append = " -fPIC -Wall -I ../../include ${@['-DSTUB_ONLY', ''][d.getVar('USE_NLS', 1) != 'no']}"
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
|
|
do_compile() {
|
|
cd ${WORKDIR}/src/proxy-libintl
|
|
oe_runmake ../../lib/libintl.a
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}/${includedir}
|
|
install -d ${D}/${libdir}
|
|
install -m 0644 ${WORKDIR}/include/libintl.h ${D}/${includedir}
|
|
install -m 0644 ${WORKDIR}/lib/libintl.a ${D}/${libdir}
|
|
}
|