mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
26 lines
593 B
Bash
26 lines
593 B
Bash
DESCRIPTION="SQL database server."
|
|
HOMEPAGE="http://www.mysql.com"
|
|
SOURCE_URI="http://mirror.provenscaling.com/mysql/community/source/5.0/mysql-5.0.83.tar.gz"
|
|
CHECKSUM_MD5="051392064a1e32cca5c23a593908b10e"
|
|
REVISION="1"
|
|
STATUS_HAIKU="untested"
|
|
DEPEND="sys-libs/readline >= 5.2"
|
|
|
|
BUILD()
|
|
{
|
|
cd mysql-5.0.83
|
|
libtoolize --force --install --copy
|
|
aclocal
|
|
autoconf
|
|
./configure --without-readline CFLAGS=-O2 --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd mysql-5.0.83
|
|
make install
|
|
}
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2000, 2012, Oracle and/or its affiliates. All rights reserved."
|