aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zziplib/zziplib.inc
blob: 5951ed6e7dd29c5673adce3fa69814d0acc80ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DESCRIPTION = "Support library for dealing with zip files"
SECTION = "libs"
PRIORITY = "optional"

DEPENDS = "zlib python-native"

SRC_URI = "${SOURCEFORGE_MIRROR}/zziplib/zziplib-${PV}.tar.bz2"
LICENSE = "LGPL MPL"

inherit autotools pkgconfig

BBCLASSEXTEND = "native"

do_configure_append() {
	# Fix some brokenness in the generated makefile.
	sed -i \
		-e "s|tail -1|tail -n 1|" \
		-e "s|dist dist-all dist-all:|dist dist-all:|" \
		-e "s|docs||g" \
	Makefile

  mkdir ${S}/build
}