summaryrefslogtreecommitdiff
path: root/repo/util/cpio.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util/cpio.xibuild')
-rw-r--r--repo/util/cpio.xibuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/repo/util/cpio.xibuild b/repo/util/cpio.xibuild
deleted file mode 100644
index 2c3a41d..0000000
--- a/repo/util/cpio.xibuild
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="musl"
-
-PKG_VER=2.13
-SOURCE=https://ftp.gnu.org/gnu/cpio/cpio-$PKG_VER.tar.bz2
-DESC="A tool to copy files into or out of a cpio or tar archive"
-
-prepare () {
- sed -i '/The name/,+2 d' src/global.c
-}
-
-build () {
- ./configure --prefix=/usr \
- --enable-mt \
- --with-rmt=/usr/libexec/rmt &&
- make &&
- makeinfo --html -o doc/html doc/cpio.texi &&
- makeinfo --html --no-split -o doc/cpio.html doc/cpio.texi &&
- makeinfo --plaintext -o doc/cpio.txt doc/cpio.texi
-}
-
-package () {
- make DESTDIR=$PKG_DEST install &&
- install -m755 -d $PKG_DEST/usr/share/doc/cpio-$PKG_VER/html &&
- install -m644 doc/html/* \
- $PKG_DEST/usr/share/doc/cpio-$PKG_VER/html &&
- install -m644 doc/cpio.txt \
- $PKG_DEST/usr/share/doc/cpio-$PKG_VER
- install -m644 doc/cpio.html \
- $PKG_DEST/usr/share/doc/cpio-$PKG_VER
-}
-