The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libass / libass.mk
1 ################################################################################
2 #
3 # libass
4 #
5 ################################################################################
6
7 LIBASS_VERSION = 0.10.2
8 LIBASS_SOURCE = libass-$(LIBASS_VERSION).tar.xz
9 LIBASS_SITE = http://libass.googlecode.com/files
10 LIBASS_INSTALL_STAGING = YES
11 LIBASS_LICENSE = ISC
12 LIBASS_LICENSE_FILES = COPYING
13 LIBASS_DEPENDENCIES = \
14         host-pkgconf \
15         freetype \
16         libfribidi \
17         $(if $(BR2_PACKAGE_LIBICONV),libiconv)
18
19 ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
20 LIBASS_DEPENDENCIES += fontconfig
21 LIBASS_CONF_OPTS += --enable-fontconfig
22 else
23 LIBASS_CONF_OPTS += --disable-fontconfig
24 endif
25
26 ifeq ($(BR2_PACKAGE_HARFBUZZ),y)
27 LIBASS_DEPENDENCIES += harfbuzz
28 LIBASS_CONF_OPTS += --enable-harfbuzz
29 else
30 LIBASS_CONF_OPTS += --disable-harfbuzz
31 endif
32
33 ifeq ($(BR2_PACKAGE_LIBENCA),y)
34 LIBASS_DEPENDENCIES += libenca
35 LIBASS_CONF_OPTS += --enable-enca
36 else
37 LIBASS_CONF_OPTS += --disable-enca
38 endif
39
40 $(eval $(autotools-package))