1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-29 00:22:57 +03:00

mplayer: install config to /etc/mplayer/mplayer.config (renamed files/config)

This commit is contained in:
David Kühling 2011-04-30 14:08:34 +02:00
parent 781599fc4a
commit 4ce8eb4b47
2 changed files with 4 additions and 9 deletions

View File

@ -71,7 +71,7 @@ CONFIGURE_ARGS := --target=mips \
--extra-ldflags="$(ICONV_LDFLAGS)" \
--host-cc=gcc \
--enable-fbdev \
--confdir=/usr/share/mplayer \
--confdir=/etc/mplayer \
--enable-menu \
--disable-x11 \
--disable-xv \
@ -163,17 +163,12 @@ define Package/MPlayer/install
$(PKG_BUILD_DIR)/mplayer \
$(1)/usr/bin/mplayer
$(INSTALL_DATA) \
$(FILES_DIR)/input.conf $(FILES_DIR)/config \
$(1)/usr/share/mplayer
$(FILES_DIR)/input.conf \
$(FILES_DIR)/mplayer.conf \
$(1)/etc/mplayer/
endef
define Package/MPlayer/postinst
#!/bin/sh
mkdir $${IPKG_INSTROOT}/root/.mplayer
cp $${IPKG_INSTROOT}/usr/share/mplayer/config $${IPKG_INSTROOT}/root/.mplayer/config
endef
$(eval $(call BuildPackage,MPlayer))