mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
sed: alternatives instead of postinst
Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
This commit is contained in:
+4
-15
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=sed
|
PKG_NAME:=sed
|
||||||
PKG_VERSION:=4.8
|
PKG_VERSION:=4.8
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
PKG_SOURCE_URL:=@GNU/sed
|
PKG_SOURCE_URL:=@GNU/sed
|
||||||
@@ -31,6 +31,7 @@ define Package/sed
|
|||||||
TITLE:=sed stream editor utility - full version
|
TITLE:=sed stream editor utility - full version
|
||||||
DEPENDS:=+libpcre
|
DEPENDS:=+libpcre
|
||||||
URL:=https://www.gnu.org/software/sed/
|
URL:=https://www.gnu.org/software/sed/
|
||||||
|
ALTERNATIVES:=300:/bin/sed:/usr/libexec/sed-gnu
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/sed/description
|
define Package/sed/description
|
||||||
@@ -42,22 +43,10 @@ occurrences of a string within a file.
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/sed/install
|
define Package/sed/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/libexec
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sed $(1)/usr/libexec/sed-gnu
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS+= --disable-acl
|
CONFIGURE_ARGS+= --disable-acl
|
||||||
|
|
||||||
define Package/sed/postinst
|
|
||||||
#!/bin/sh
|
|
||||||
[ -L "$${IPKG_INSTROOT}/bin/sed" ] && rm -f "$${IPKG_INSTROOT}/bin/sed"
|
|
||||||
exit 0
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/sed/prerm
|
|
||||||
$${IPKG_INSTROOT}/bin/busybox sed -h 2>&1 | grep -q BusyBox && \
|
|
||||||
ln -sf busybox $${IPKG_INSTROOT}/bin/sed
|
|
||||||
exit 0
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,sed))
|
$(eval $(call BuildPackage,sed))
|
||||||
|
|||||||
Reference in New Issue
Block a user