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/revdep/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/revdep/MAKEPKG')
| -rw-r--r-- | core/revdep/MAKEPKG | 27 |
1 files changed, 27 insertions, 0 deletions
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 |
