mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
82 lines
1.9 KiB
Plaintext
82 lines
1.9 KiB
Plaintext
SUMMARY="Library for solving packages and reading repositories"
|
|
DESCRIPTION="Library for solving packages and reading repositories."
|
|
LICENSE="BSD (3-clause)"
|
|
COPYRIGHT="2007-2013, Novell Inc."
|
|
HOMEPAGE="http://github.com/openSUSE/libsolv"
|
|
SRC_URI="git+git://github.com/weinhold/libsolv.git#ef4a8778ef567224feb35019b711507ae1d6e7c3"
|
|
REVISION="3"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libsolv$secondaryArchSuffix = $portVersion
|
|
lib:libsolv$secondaryArchSuffix = $portVersion
|
|
lib:libsolvext$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
lib:libexpat$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
devel:libexpat$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:cmake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:sed
|
|
"
|
|
|
|
PATCH()
|
|
{
|
|
sed -i 's,${CMAKE_INSTALL_PREFIX}/bin',$binDir, CMakeLists.txt
|
|
sed -i 's,${CMAKE_INSTALL_PREFIX}/include',$includeDir, \
|
|
src/CMakeLists.txt ext/CMakeLists.txt
|
|
}
|
|
|
|
BUILD()
|
|
{
|
|
rm -rf build
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=$prefix -DLIB=$relativeLibDir ..
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd build
|
|
make install
|
|
|
|
# set up the develop directory correctly
|
|
prepareInstalledDevelLibs libsolv libsolvext
|
|
|
|
# move cmake files
|
|
mkdir -p $dataDir
|
|
mv $prefix/share/cmake $dataDir
|
|
rmdir $prefix/share
|
|
|
|
# We don't want the executables.
|
|
rm -r $prefix/bin
|
|
|
|
# devel package
|
|
packageEntries devel \
|
|
$dataDir \
|
|
$developDir
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
libsolv${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libsolv${secondaryArchSuffix} = $portVersion
|
|
devel:libsolvext${secondaryArchSuffix} = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
libsolv${secondaryArchSuffix} == $portVersion base
|
|
"
|