mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +02:00
27 lines
673 B
Plaintext
27 lines
673 B
Plaintext
DESCRIPTION="libgcrypt"
|
|
HOMEPAGE="http://directory.fsf.org/project/libgcrypt/"
|
|
SRC_URI="ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.5.0.tar.bz2"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND="dev-libs/libgpg-error > 1.8"
|
|
CHECKSUM_MD5="693f9c64d50c908bc4d6e01da3ff76d8"
|
|
BUILD()
|
|
{
|
|
cd libgcrypt-1.5.0
|
|
libtoolize --force --copy --install
|
|
autogen.sh
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--datarootdir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--enable-shared --enable-static
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd libgcrypt-1.5.0
|
|
make install
|
|
}
|
|
LICENSE="GNU LGPL v3"
|
|
COPYRIGHT="2000-2010 Free Software Foundation, Inc."
|