summaryrefslogtreecommitdiff
path: root/core/sed
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/sed
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/sed')
-rw-r--r--core/sed/.footprint7
-rw-r--r--core/sed/.signature6
-rw-r--r--core/sed/MAKEPKG35
3 files changed, 48 insertions, 0 deletions
diff --git a/core/sed/.footprint b/core/sed/.footprint
new file mode 100644
index 0000000..3d4ca90
--- /dev/null
+++ b/core/sed/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/sed
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/sed.1.gz
diff --git a/core/sed/.signature b/core/sed/.signature
new file mode 100644
index 0000000..5abb8e5
--- /dev/null
+++ b/core/sed/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mGa/AlZblLeBtVsAzAetoGwak21SyCQiOHIFfmX9kZ3CaLaLPECW9GEjKQeWO/niWRFVD8lI17tl7rZMOZW7fAI=
+
+SHA256 (MAKEPKG) = 5cbb3f723118e3d753831ffa44fd86fb284c2e0664f6ee2f610c11baf5de2079
+SHA256 (.footprint) = f197943f98447a8b896d3265fa5966642d90b574ef005fa4ac3adf41d8442c6e
+SHA256 (sed-4.10.tar.xz) = b8e72182b2ec96a3574e2998c47b7aaa64cc20ce000d8e9ac313cc07cecf28c7
+SHA256 (sed#4.10-1.pkg.tar.gz) = 4cf4d9a32f0f84fe45602370ba2ed90c83c0dd50d3b81181a9383b4e20d06468
diff --git a/core/sed/MAKEPKG b/core/sed/MAKEPKG
new file mode 100644
index 0000000..bba215a
--- /dev/null
+++ b/core/sed/MAKEPKG
@@ -0,0 +1,35 @@
+#!/bin/mkpkg
+# description: GNU stream editor
+# url: https://www.gnu.org/software/sed/
+
+name=sed
+version=4.10
+release=1
+depends=(acl)
+source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
+
+sha256sums=(
+ "b8e72182b2ec96a3574e2998c47b7aaa64cc20ce000d8e9ac313cc07cecf28c7"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/ \
+ --bindir=/bin \
+ --mandir=/usr/share/man \
+ --disable-nls
+
+ make
+ make install DESTDIR=$PKG
+
+ rm -rf $PKG/share
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh