fix moving gstreamer dlls (#1288)

This commit is contained in:
Pavel Vatagin 2017-01-02 18:44:45 +03:00
parent e134a77279
commit c9e6bee8e7
5 changed files with 21 additions and 4 deletions

View File

@ -25,4 +25,9 @@ define $(PKG)_BUILD
--docdir='$(1)/sink' \
--with-html-dir='$(1)/sink'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
# some .dlls are installed to lib - no obvious way to change
$(if $(BUILD_SHARED),
mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
)
endef

View File

@ -25,4 +25,9 @@ define $(PKG)_BUILD
--docdir='$(1)/sink' \
--with-html-dir='$(1)/sink'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
# some .dlls are installed to lib - no obvious way to change
$(if $(BUILD_SHARED),
mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
)
endef

View File

@ -33,6 +33,7 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1)' -j '$(JOBS)' install CFLAGS='-DWAVE_FORMAT_DOLBY_AC3_SPDIF=0x0092'
# some .dlls are installed to lib - no obvious way to change
$(and $(BUILD_SHARED),
mv -v '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/')
$(if $(BUILD_SHARED),
mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
)
endef

View File

@ -25,4 +25,9 @@ define $(PKG)_BUILD
--docdir='$(1)/sink' \
--with-html-dir='$(1)/sink'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
# some .dlls are installed to lib - no obvious way to change
$(if $(BUILD_SHARED),
mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
)
endef

View File

@ -32,6 +32,7 @@ define $(PKG)_BUILD
$(MAKE) -C '$(1)' -j '$(JOBS)' install
# some .dlls are installed to lib - no obvious way to change
$(and $(BUILD_SHARED),
mv -v '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/')
$(if $(BUILD_SHARED),
mv -vf '$(PREFIX)/$(TARGET)/lib/gstreamer-1.0/'*.dll '$(PREFIX)/$(TARGET)/bin/'
)
endef