You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.8 KiB

  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libpng
  9. PKG_VERSION:=1.2.56
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@SF/libpng
  13. PKG_MD5SUM:=868562bd1c58b76ed8703f135a2e439a
  14. PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
  15. PKG_LICENSE:=Libpng GPL-2.0+ BSD-3-Clause
  16. PKC_LICENSE_FILES:=LICENSE contrib/gregbook/COPYING contrib/gregbook/LICENSE
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/host-build.mk
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/libpng
  23. SECTION:=libs
  24. CATEGORY:=Libraries
  25. DEPENDS:=+zlib
  26. TITLE:=A PNG format files handling library
  27. URL:=http://www.libpng.org/pub/png/libpng.html
  28. endef
  29. TARGET_CFLAGS += $(FPIC)
  30. CONFIGURE_ARGS += \
  31. --enable-shared \
  32. --enable-static \
  33. define Build/InstallDev
  34. $(INSTALL_DIR) $(1)/usr/bin
  35. $(CP) $(PKG_INSTALL_DIR)/usr/bin/libpng{,12}-config $(1)/usr/bin/
  36. $(SED) \
  37. 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
  38. $(1)/usr/bin/libpng{,12}-config
  39. $(INSTALL_DIR) $(1)/usr/include
  40. $(CP) $(PKG_INSTALL_DIR)/usr/include/png{,conf}.h $(1)/usr/include/
  41. $(CP) $(PKG_INSTALL_DIR)/usr/include/libpng12 $(1)/usr/include/
  42. $(INSTALL_DIR) $(1)/usr/lib
  43. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpng{,12}.{a,la,so*} $(1)/usr/lib/
  44. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
  45. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libpng{,12}.pc $(1)/usr/lib/pkgconfig/
  46. $(INSTALL_DIR) $(2)/bin
  47. for f in libpng{,12}-config; do \
  48. $(LN) ../../usr/bin/$$$$f $(2)/bin/ ; \
  49. done
  50. endef
  51. define Package/libpng/install
  52. $(INSTALL_DIR) $(1)/usr/lib
  53. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpng{,12}.so.* $(1)/usr/lib/
  54. endef
  55. $(eval $(call HostBuild))
  56. $(eval $(call BuildPackage,libpng))