summaryrefslogtreecommitdiff
path: root/core/revdep
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/revdep
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/revdep')
-rw-r--r--core/revdep/.footprint9
-rw-r--r--core/revdep/.signature6
-rw-r--r--core/revdep/MAKEPKG27
3 files changed, 42 insertions, 0 deletions
diff --git a/core/revdep/.footprint b/core/revdep/.footprint
new file mode 100644
index 0000000..eb9ff36
--- /dev/null
+++ b/core/revdep/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/revdep
+drwxr-xr-x root/root etc/
+drwxr-xr-x root/root etc/revdep.d/
+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/man8/
+-rw-r--r-- root/root usr/share/man/man8/revdep.8.gz
diff --git a/core/revdep/.signature b/core/revdep/.signature
new file mode 100644
index 0000000..257721c
--- /dev/null
+++ b/core/revdep/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mPsTOfbRJ2oNsVK+RpDdnsqvND2TR8blXl0JHx1M+goxJ33VrQZIg+PPwiRa9ipjeDknmaRDOZKEvqLjZEvc5Q4=
+
+SHA256 (MAKEPKG) = cd5e4d719483729334debc4c84d4c7c961a5536f171c35ae6ce037d53012d8b6
+SHA256 (.footprint) = 48c85d96f7019e25a7cde736a1400e6620f8ddb1673c17bfdd8c71b2168d201a
+SHA256 (revdep-1.2.0.tar.gz) = 285f0cbaee913796a213f07c19822caa6ae5a1135fee19254912b1fcc4dcc46c
+SHA256 (revdep#1.2.0-1.pkg.tar.gz) = 576953333f46d2fa3616546a25b06dc9caef158fe40ce2552ffec210ce56f2c9
diff --git a/core/revdep/MAKEPKG b/core/revdep/MAKEPKG
new file mode 100644
index 0000000..727901d
--- /dev/null
+++ b/core/revdep/MAKEPKG
@@ -0,0 +1,27 @@
+#!/bin/mkpkg
+# description: dependancy resolution utility
+# url: https://rawnix.org
+
+name=revdep
+version=1.2.0
+release=1
+depends=(libelf zlib zstd)
+source=(https://dl.rawnix.org/zorz/$name-$version.tar.gz)
+
+sha256sums=(
+ "285f0cbaee913796a213f07c19822caa6ae5a1135fee19254912b1fcc4dcc46c"
+)
+
+build() {
+ cd $name-$version
+
+ make CC=cc PREFIX=/ BINDIR=/bin ETCDIR=/etc MANDIR=/usr/share/man
+ make DESTDIR=$PKG PREFIX=/ BINDIR=/bin ETCDIR=/etc MANDIR=/usr/share/man install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh