OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # Copyright (C) 2011 David Kuehling <dvdkhlng TA gmx TOD de> |
| 3 | # |
| 4 | # License GPLv2 or later. NO WARRANTY. |
| 5 | # |
| 6 | # OpenWRT package for mplayer_jz47xx accelerated mplayer video driver |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | |
| 10 | PKG_NAME:=mplayer_jz47xx |
| 11 | PKG_VERSION:=0.1.5 |
| 12 | PKG_RELEASE:=1 |
| 13 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 14 | PKG_SOURCE_URL:=@SF/mplayer-jz47xx |
| 15 | PKG_MD5SUM:=cff93959d4e374b1acd3ae11bc6b1190 |
| 16 | PKG_INSTALL:=1 |
| 17 | |
| 18 | include $(INCLUDE_DIR)/package.mk |
| 19 | |
| 20 | define Package/mplayer_jz47xx/Default |
| 21 | MAINTAINER:="David Kuehling" <dvdkhlng TA gmx TOD de> |
| 22 | SECTION:=multimedia |
| 23 | CATEGORY:=Multimedia |
| 24 | TITLE:=MPlayer accelerated vidix for Ingenic Jz47xx IPU |
| 25 | URL:=https://sourceforge.net/projects/mplayer_jz47xx/ |
| 26 | DEPENDS:=+MPlayer |
| 27 | endef |
| 28 | |
| 29 | define Package/mplayer_jz47xx/Default/description |
| 30 | Accelerated vidix driver for MPlayer. Start mplayer with option |
| 31 | \'-vo cvidix -srceenw 320 screenh 240 -fs\' to use it. |
| 32 | endef |
| 33 | |
| 34 | define Package/mplayer_jz47xx |
| 35 | $(call Package/mplayer_jz47xx/Default) |
| 36 | endef |
| 37 | |
| 38 | define Package/mplayer_jz47xx/description |
| 39 | $(call Package/mplayer_jz47xx/Default/description) |
| 40 | endef |
| 41 | |
| 42 | |
| 43 | #CONFIGURE_ARGS += |
| 44 | |
| 45 | define Build/Configure |
| 46 | $(call Build/Configure/Default) |
| 47 | endef |
| 48 | |
| 49 | define Build/Compile |
| 50 | $(call Build/Compile/Default) |
| 51 | endef |
| 52 | |
| 53 | define Package/mplayer_jz47xx/install |
| 54 | $(INSTALL_DIR) $(1)/usr |
| 55 | $(CP) $(PKG_INSTALL_DIR)/usr/* $(1)/usr/ |
| 56 | endef |
| 57 | |
| 58 | $(eval $(call BuildPackage,mplayer_jz47xx)) |
| 59 | |
| 60 | # The following comments configure the Emacs editor. Just ignore them. |
| 61 | # Local Variables: |
| 62 | # compile-command: "make -C ~/h/src/qi/openwrt-xburst package/mplayer_jz47xx/compile -j2 V=99" |
| 63 | # End: |
| 64 |
