* convert all .bep files to follow shell syntax

* rename all .bep files to .recipe
This commit is contained in:
Oliver Tappe
2013-03-29 16:31:03 +00:00
parent 94cc6aaf85
commit 60aba35d64
937 changed files with 4094 additions and 2047 deletions

View File

@@ -0,0 +1,28 @@
DESCRIPTION="tar saves and restores files from a tape or disk archive."
HOMEPAGE="http://www.gnu.org/software/tar/"
SRC_URI="http://ftp.gnu.org/gnu/tar/tar-1.26.tar.bz2"
CHECKSUM_MD5="2cee42a2ff4f1cd4f9298eeeb2264519"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd tar-1.26
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--infodir=$COMMON_DOCS/info \
--libexecdir=`finddir B_COMMON_LIB_DIRECTORY`/exec \
--sbindir=`finddir B_COMMON_BIN_DIRECTORY` \
--disable-nls \
LDFLAGS="-lnetwork" \
FORCE_UNSAFE_CONFIGURE=1
make
}
INSTALL()
{
cd tar-1.26
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="1990-2011 Free Software Foundation, Inc."