summaryrefslogtreecommitdiff
path: root/core/diffutils
diff options
context:
space:
mode:
Diffstat (limited to 'core/diffutils')
-rw-r--r--core/diffutils/.footprint13
-rw-r--r--core/diffutils/.signature6
-rw-r--r--core/diffutils/MAKEPKG36
3 files changed, 55 insertions, 0 deletions
diff --git a/core/diffutils/.footprint b/core/diffutils/.footprint
new file mode 100644
index 0000000..c19774d
--- /dev/null
+++ b/core/diffutils/.footprint
@@ -0,0 +1,13 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/cmp
+-rwxr-xr-x root/root bin/diff
+-rwxr-xr-x root/root bin/diff3
+-rwxr-xr-x root/root bin/sdiff
+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/cmp.1.gz
+-rw-r--r-- root/root usr/share/man/man1/diff.1.gz
+-rw-r--r-- root/root usr/share/man/man1/diff3.1.gz
+-rw-r--r-- root/root usr/share/man/man1/sdiff.1.gz
diff --git a/core/diffutils/.signature b/core/diffutils/.signature
new file mode 100644
index 0000000..bec99e1
--- /dev/null
+++ b/core/diffutils/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mLexuERnToJStIj/HFDT+t/RUKbCIjVW/R24/EBGPrPALFMOQKtP3CsaDAD3laLzr6d+imfp/QgFHQxUU457DAg=
+
+SHA256 (MAKEPKG) = 6a5deae0d6e4d4a89613d62000188abfc89317e3fd6dd42b5aa8edaffe7aeb54
+SHA256 (.footprint) = 86c7c24c64469a29bce98c08d94a799eb176b53f5fb2c3830af2e84cb204f2e9
+SHA256 (diffutils-3.12.tar.xz) = 7c8b7f9fc8609141fdea9cece85249d308624391ff61dedaf528fcb337727dfd
+SHA256 (diffutils#3.12-1.pkg.tar.gz) = 0f27ed77e53869134e2946cddaa273dde637de10ae3d38aecb1d920a67b24e54
diff --git a/core/diffutils/MAKEPKG b/core/diffutils/MAKEPKG
new file mode 100644
index 0000000..f9d03a6
--- /dev/null
+++ b/core/diffutils/MAKEPKG
@@ -0,0 +1,36 @@
+#!/bin/mkpkg
+# description: Utilities for finding differences between files
+# url: https://www.gnu.org/software/diffutils
+
+name=diffutils
+version=3.12
+release=1
+source=(https://ftp.gnu.org/gnu/diffutils/diffutils-$version.tar.xz)
+depends=()
+makedeps=()
+
+sha256sums=(
+ "7c8b7f9fc8609141fdea9cece85249d308624391ff61dedaf528fcb337727dfd"
+)
+
+build() {
+ cd diffutils-$version
+
+ ./configure \
+ --prefix=/ \
+ --mandir=/usr/share/man \
+ --disable-nls
+
+ make
+ make DESTDIR=$PKG install
+
+ # Remove info
+ rm -rf $PKG/share
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh