Files
haikuports/net-libs/libircclient/libircclient-1.8.recipe
dash102 1b9b981584 Reformat 10 Recipes 2
Update enca-1.15.recipe

Update libpaper-1.1.24.recipe

Update libedit-2014_10_30_3.1.recipe

Update faad2-2.7.recipe

Update libebur128-1.0.1.recipe

Update pnglite-0.1.17.recipe

Update libircclient-1.8.recipe

Update glu-9.0.0.recipe

Update polarssl-1.3.9.recipe

Update libpaper-1.1.24.recipe

Update libedit-2014_10_30_3.1.recipe

Update faad2-2.7.recipe

Update libebur128-1.0.1.recipe

Update libebur128-1.0.1.recipe

Update libsdl2-2.0.1.recipe

Update libircclient-1.8.recipe

Update libpaper-1.1.24.recipe
2015-12-28 12:36:51 +00:00

67 lines
1.6 KiB
Bash

SUMMARY="An IRC client library"
DESCRIPTION="libircclient is a library implementing the client-server IRC protocol. \
It is designed to be small, fast, portable and compatible with the RFC standards \
as well as non-standard but popular features. It is perfect for building the IRC clients and bots."
HOMEPAGE="http://sourceforge.net/projects/libircclient/"
COPYRIGHT="2004-2012 George Yunaev"
LICENSE="GNU LGPL v2"
REVISION="1"
SOURCE_URI="http://downloads.sourceforge.net/project/libircclient/libircclient/$portVersion/libircclient-$portVersion.tar.gz"
CHECKSUM_SHA256="2cf8523ac683588f2785b08159a2df3e4d15939ee655c0024aa86334149de8f6"
PATCHES="libircclient-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
libircclient$secondaryArchSuffix = $portVersion compat >= 1
lib:libircclient$secondaryArchSuffix = 1
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
"
PROVIDES_devel="
libircclient${secondaryArchSuffix}_devel = $portVersion compat >= 1
devel:libircclient$secondaryArchSuffix = 1
"
REQUIRES_devel="
libircclient$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libssl$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
autoreconf -f -i
runConfigure ./configure
make $jobArgs
cd src; make $jobArgs shared
}
INSTALL()
{
make install
prepareInstalledDevelLibs libircclient
fixPkgconfig
# devel package
packageEntries devel \
$developDir
}