diff options
Diffstat (limited to 'core/pkg')
| -rw-r--r-- | core/pkg/.footprint | 17 | ||||
| -rw-r--r-- | core/pkg/.signature | 6 | ||||
| -rw-r--r-- | core/pkg/MAKEPKG | 27 |
3 files changed, 50 insertions, 0 deletions
diff --git a/core/pkg/.footprint b/core/pkg/.footprint new file mode 100644 index 0000000..790faf0 --- /dev/null +++ b/core/pkg/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/pkg +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/pkg.conf +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/bash-completion/ +drwxr-xr-x root/root usr/share/bash-completion/completions/ +-rw-r--r-- root/root usr/share/bash-completion/completions/pkg +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/pkg.conf.5.gz +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/pkg.8.gz +drwxr-xr-x root/root var/ +drwxr-xr-x root/root var/lib/ +drwxr-xr-x root/root var/lib/pkg/ diff --git a/core/pkg/.signature b/core/pkg/.signature new file mode 100644 index 0000000..65d6954 --- /dev/null +++ b/core/pkg/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mMCbj7aXYkmrP2btPiqXisAAykvmIjguR+FI6YUG7MXqghssAvTbbAyyjhZcsQ4PlVckMeL3DaBH7spk53OujgI= + +SHA256 (MAKEPKG) = f5db00144b9deebea42c2cc329c7018bf84d2403d0405eefbd50a2cebbbd7092 +SHA256 (.footprint) = 56682f507bdb565fdb7600a1a4f770cd32294987ee80fb1cb232cdb8bc81c791 +SHA256 (pkg-1.3.7.tar.gz) = 78c222f693fc2695edb637128b209df6a3557d0730c8f315dfdd854e95533463 +SHA256 (pkg#1.3.7-1.pkg.tar.gz) = 6b8d6a0681b07905cedfc79c040cc00b38c7047534d8f355acd123bf9158ac02 diff --git a/core/pkg/MAKEPKG b/core/pkg/MAKEPKG new file mode 100644 index 0000000..48108ab --- /dev/null +++ b/core/pkg/MAKEPKG @@ -0,0 +1,27 @@ +#!/bin/mkpkg +# description: Package management utilities +# url: https://www.rawnix.org + +name=pkg +version=1.3.7 +release=1 +depends=(mkpkg) +source=(https://dl.rawnix.org/zorz/$name-$version.tar.gz) + +sha256sums=( + "78c222f693fc2695edb637128b209df6a3557d0730c8f315dfdd854e95533463" +) + +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 |
