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.

66 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2016 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:=x264
  9. PKG_VERSION:=snapshot-20160416-2245-stable
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=https://download.videolan.org/x264/snapshots/
  13. PKG_MAINTAINER:=Adrian Panella <ianchi74@outlook.com>
  14. PKG_MD5SUM:=70953574692cb80232d2879b80a140e0
  15. PKG_LICENSE:=GPL-2.0
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_FIXUP:=autoreconf
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. TARGET_CFLAGS:=-Wno-maybe-uninitialized -Wshadow -Wall -std=gnu99 -fPIC -O3 -ffast-math -I.
  21. MAKE_FLAGS+= LD="$(TARGET_CC) -o"
  22. CONFIGURE_ARGS += \
  23. --enable-shared \
  24. --enable-pic \
  25. --disable-cli
  26. ifeq ($(CONFIG_SOFT_FLOAT),y)
  27. CONFIGURE_ARGS += --disable-asm
  28. endif
  29. define Package/libx264
  30. SECTION:=libs
  31. CATEGORY:=Libraries
  32. TITLE:=H264/AVC free codec library.
  33. DEPENDS:=@BUILD_PATENTED
  34. URL:=http://www.videolan.org/developers/x264.html
  35. endef
  36. define Package/libx264/description
  37. x264 is a free software library for encoding
  38. video streams into the H.264/MPEG-4 AVC compression format.
  39. endef
  40. define Build/InstallDev
  41. $(INSTALL_DIR) $(1)/usr/include/x264/
  42. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
  43. $(INSTALL_DIR) $(1)/usr/lib/
  44. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
  45. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig/
  46. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
  47. endef
  48. define Package/libx264/install
  49. $(INSTALL_DIR) $(1)/usr/lib/
  50. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
  51. endef
  52. $(eval $(call BuildPackage,libx264))