mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
33 lines
804 B
Plaintext
33 lines
804 B
Plaintext
DESCRIPTION="GNU cpio copies files into or out of a cpio or tar archive. The archive can be another file on the disk, a magnetic tape, or a pipe."
|
|
HOMEPAGE="http://www.gnu.org/software/cpio/cpio.html"
|
|
SRC_URI="http://ftp.gnu.org/gnu/cpio/cpio-2.11.tar.gz"
|
|
CHECKSUM_MD5="1112bb6c45863468b5496ba128792f6c"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd cpio-2.11
|
|
# sed -i 's/restrict//g' gnu/string.in.h
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
infodir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/info \
|
|
mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man \
|
|
localedir=`finddir B_COMMON_DATA_DIRECTORY`/locale
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd cpio-2.11
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd cpio-2.11
|
|
make check
|
|
}
|
|
|
|
LICENSE="GNU GPL v3"
|
|
COPYRIGHT="1988-2010 Free Software Foundation, Inc."
|