From f14f49dc92e68c7639eee7dae442a7fe7eff7fe9 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Fri, 8 Jan 2021 00:49:43 +0300 Subject: [PATCH] fixed packages --- Makefile | 4 +++- pkg/gentoo/ustreamer-9999.ebuild | 2 ++ pkg/openwrt/Makefile | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 755de27..dd71e55 100644 --- a/Makefile +++ b/Makefile @@ -87,6 +87,7 @@ install: $(USTR) $(DUMP) install -Dm644 man/$(USTR).1 $(DESTDIR)$(MANPREFIX)/man1/$(USTR).1 install -Dm644 man/$(DUMP).1 $(DESTDIR)$(MANPREFIX)/man1/$(DUMP).1 gzip $(DESTDIR)$(MANPREFIX)/man1/$(USTR).1 + gzip $(DESTDIR)$(MANPREFIX)/man1/$(DUMP).1 install-strip: install @@ -97,7 +98,8 @@ install-strip: install uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/$(USTR) \ $(DESTDIR)$(PREFIX)/bin/$(DUMP) \ - $(DESTDIR)$(MANPREFIX)/man1/$(USTR).1 + $(DESTDIR)$(MANPREFIX)/man1/$(USTR).1 \ + $(DESTDIR)$(MANPREFIX)/man1/$(DUMP).1 regen: diff --git a/pkg/gentoo/ustreamer-9999.ebuild b/pkg/gentoo/ustreamer-9999.ebuild index f632d48..cd8b0e1 100644 --- a/pkg/gentoo/ustreamer-9999.ebuild +++ b/pkg/gentoo/ustreamer-9999.ebuild @@ -25,5 +25,7 @@ BDEPEND="" src_install() { dobin ustreamer + dobin ustreamer-dump doman man/ustreamer.1 + doman man/ustreamer-dump.1 } diff --git a/pkg/openwrt/Makefile b/pkg/openwrt/Makefile index 8bca7e8..a7a7643 100644 --- a/pkg/openwrt/Makefile +++ b/pkg/openwrt/Makefile @@ -36,6 +36,7 @@ endef define Package/ustreamer/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/ustreamer $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/ustreamer-dump $(1)/usr/bin/ $(INSTALL_DIR) $(1)/etc/config $(CP) ./files/ustreamer.config $(1)/etc/config/ustreamer $(INSTALL_DIR) $(1)/etc/init.d