mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
32 lines
590 B
Plaintext
32 lines
590 B
Plaintext
DESCRIPTION="a regular expression library for different character encodings"
|
|
HOMEPAGE="http://www.geocities.jp/kosako3/oniguruma/"
|
|
SRC_URI="http://www.geocities.jp/kosako3/oniguruma/archive/onig-5.9.2.tar.gz"
|
|
CHECKSUM_MD5="0f4ad1b100a5f9a91623e04111707b84"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd onig-5.9.2
|
|
libtoolize --force --copy --install
|
|
touch NEWS ChangeLog
|
|
autoreconf -i
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd onig-5.9.2
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd onig-5.9.2
|
|
make check
|
|
}
|
|
|
|
LICENSE="BSD (2-clause)"
|
|
COPYRIGHT="K.Kosako"
|