Rename all port folders containing '-' to use '_' instead.

* haikuporter relies on the recipe file sharing the name with the port folder
This commit is contained in:
Oliver Tappe
2013-04-21 18:52:53 +02:00
parent db8f9fa6db
commit 2191f6611f
194 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
DESCRIPTION="XZ Utils is data compression software for working with LZMA compressed files."
HOMEPAGE="http://tukaani.org/xz/"
SRC_URI="http://tukaani.org/xz/xz-5.0.1.tar.bz2"
CHECKSUM_MD5="cb6c7a58cec4d663a395c54d186ca0c6"
REVISION="1"
STATUS_HAIKU="stable"
MESSAGE="This port only builds with gcc4."
DEPEND=""
BUILD()
{
cd xz-5.0.1
touch po/t-cs.gmo
libtoolize --force --copy --install
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--docdir=$COMMON_DOCS/doc/xz \
--mandir=$COMMON_DOCS/man \
--localedir=`finddir B_COMMON_DATA_DIRECTORY`/locale
make
}
INSTALL()
{
cd xz-5.0.1
make install
}
TEST()
{
cd xz-5.0.1
make check
}
LICENSE="GNU LGPL v2.1
GNU GPL v2
GNU GPL v3"
COPYRIGHT="2005-2011 Lasse Collin"