summaryrefslogtreecommitdiff
path: root/devel/cpio
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cpio')
-rw-r--r--devel/cpio/.footprint10
-rw-r--r--devel/cpio/.signature6
-rw-r--r--devel/cpio/MAKEPKG33
3 files changed, 49 insertions, 0 deletions
diff --git a/devel/cpio/.footprint b/devel/cpio/.footprint
new file mode 100644
index 0000000..969d3fe
--- /dev/null
+++ b/devel/cpio/.footprint
@@ -0,0 +1,10 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/cpio
+drwxr-xr-x root/root usr/libexec/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/cpio.info
+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/cpio.1.gz
diff --git a/devel/cpio/.signature b/devel/cpio/.signature
new file mode 100644
index 0000000..9904402
--- /dev/null
+++ b/devel/cpio/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mE68k41TIsn/KDmoViLe4dV1N++8Go57dlxkxgFjRcV+DFXPacc00pkHzjgYJr0POUeIub64BdmvyWpR4pqaPAI=
+
+SHA256 (MAKEPKG) = 19c83b005ef6753dfc0db709af92816bf66b37eb2035a7fa8ad4c61f7cd8c29f
+SHA256 (.footprint) = 624d5dc8c4471a7c933f6e4d6682f21044550aceb7f32bd945f018971b0ddcea
+SHA256 (cpio-2.15.tar.gz) = efa50ef983137eefc0a02fdb51509d624b5e3295c980aa127ceee4183455499e
+SHA256 (cpio#2.15-1.pkg.tar.gz) = 7b6227df9d9d132340705a9887bc271cbc3f36ccc15da03d65c7e942f162b5b1
diff --git a/devel/cpio/MAKEPKG b/devel/cpio/MAKEPKG
new file mode 100644
index 0000000..12fb80c
--- /dev/null
+++ b/devel/cpio/MAKEPKG
@@ -0,0 +1,33 @@
+#!/bin/mkpkg
+# description: Tool for creating and extracting archive files
+# url: https://www.gnu.org/software/cpio/
+
+name=cpio
+version=2.15
+release=1
+depends=()
+makedeps=()
+source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
+
+sha256sums=(
+ "efa50ef983137eefc0a02fdb51509d624b5e3295c980aa127ceee4183455499e"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure --prefix=/usr --disable-nls
+ make
+ make DESTDIR=$PKG install
+
+ # rmt conflicts with tar
+ rm -f $PKG/usr/libexec/rmt
+ rm -rf $PKG/usr/share/man/man8
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh