blob: b716ff034e40bdb0723612c2f524bd11c6a427ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(TOPDIR)/rules.mk
PKG_NAME:= poppler
PKG_VERSION:= 0.18.4
PKG_RELEASE:= 1
PKG_MD5SUM:= 12658f3308597e57f3faff538cc73baf
PKG_DESCR:= pdf rendering library
PKG_SECTION:= libs
PKG_URL:= http://poppler.freedesktop.org/
PKG_SITES:= http://poppler.freedesktop.org/
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,POPPLER,poppler,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
poppler-install:
$(INSTALL_DIR) $(IDIR_POPPLER)/usr/lib
$(CP) $(WRKINST)/usr/lib/libpoppler*.so* \
$(IDIR_POPPLER)/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
|