diff options
Diffstat (limited to 'core/sed')
| -rw-r--r-- | core/sed/.footprint | 7 | ||||
| -rw-r--r-- | core/sed/.signature | 6 | ||||
| -rw-r--r-- | core/sed/MAKEPKG | 35 |
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 |
