diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/sed/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/sed/MAKEPKG')
| -rw-r--r-- | core/sed/MAKEPKG | 35 |
1 files changed, 35 insertions, 0 deletions
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 |
