diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-08-21 15:06:39 (GMT) |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-08-21 16:29:49 (GMT) |
commit | 42cdc0693356a58a64cd4adb68c192f9e349ad16 (patch) | |
tree | c086df4454cdc9966b188ce037a6a7e3217502fa /src/opus.mk | |
parent | 903d24d7ef3d6bccc33958356d54001b0a83a13b (diff) | |
download | mxe-42cdc0693356a58a64cd4adb68c192f9e349ad16.zip mxe-42cdc0693356a58a64cd4adb68c192f9e349ad16.tar.gz mxe-42cdc0693356a58a64cd4adb68c192f9e349ad16.tar.bz2 |
opus: don't install cruft
This gets rid of ca. 15 manpages, one info page and ca. 20 HTML pages.
Diffstat (limited to 'src/opus.mk')
-rw-r--r-- | src/opus.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/opus.mk b/src/opus.mk index faafe02..3dac60f 100644 --- a/src/opus.mk +++ b/src/opus.mk @@ -23,6 +23,9 @@ endef define $(PKG)_BUILD cd '$(1)' && ./configure \ $(MXE_CONFIGURE_OPTS) - $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= - $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= + $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_CRUFT) + $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_CRUFT) + rm -f '$(PREFIX)/$(TARGET)'/share/man/man3/opus_*.3 + rm -f '$(PREFIX)/$(TARGET)'/share/man/man3/opus.h.3 + rm -rf '$(PREFIX)/$(TARGET)'/share/doc/opus/html endef |