Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37517513
en ru br
Репозитории ALT
S:0.15-alt1.1
5.1: 0.9-alt1
www.altlinux.org/Changes

Группа :: Система/Библиотеки
Пакет: json-c

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

%define soversion 5

Name: json-c
Version: 0.15
Release: alt1.1

Summary: JSON implementation in C
License: MIT
Group: System/Libraries
Url: https://github.com/json-c/json-c/wiki

Source: %name-%version.tar
# git://github.com/json-c/json-c.git

BuildRequires(pre): rpm-macros-cmake
BuildRequires: cmake ctest

%description
JSON-C implements a reference counting object model that allows you to
easily construct JSON objects in C, output them as JSON formatted
strings and parse JSON formatted strings back into the C representation
of JSON objects.

%package -n lib%name%soversion
Summary: JSON shared library
Group: System/Libraries

%description -n lib%name%soversion
JSON-C implements a reference counting object model that allows you to
easily construct JSON objects in C, output them as JSON formatted
strings and parse JSON formatted strings back into the C representation
of JSON objects.

This package contains shared JSON-C library

%package -n lib%name-devel
Summary: header files for libjson
Group: Development/C
Requires: lib%name%soversion = %version-%release

%description -n lib%name-devel
JSON-C implements a reference counting object model that allows you to
easily construct JSON objects in C, output them as JSON formatted
strings and parse JSON formatted strings back into the C representation
of JSON objects.

This package contains development part of JSON-C

%prep
%setup

%build
%cmake \
 -DBUILD_STATIC_LIBS:BOOL=OFF \
 -DCMAKE_BUILD_TYPE:STRING=RELEASE \
 -DCMAKE_C_FLAGS_RELEASE:STRING="" \
 -DDISABLE_BSYMBOLIC:BOOL=OFF \
 -DDISABLE_WERROR:BOOL=OFF \
 -DENABLE_RDRAND:BOOL=OFF \
 -DENABLE_THREADING:BOOL=ON

%cmake_build

%install
%cmakeinstall_std

# Relocate shared libraries from %%_libdir/ to /%%_lib/.

mkdir -p %buildroot/%_lib
for f in %buildroot%_libdir/*.so; do
       t=$(readlink -v "$f")
       ln -fnrs %buildroot/%_lib/"$t" "$f"
done
mv %buildroot%_libdir/*.so.* %buildroot/%_lib/

%check
export LD_LIBRARY_PATH=%buildroot/%_lib
pushd %_cmake__builddir
ctest --output-on-failure
popd

%files -n lib%name%soversion
/%_lib/*.so.%{soversion}*

%files -n lib%name-devel
%_libdir/*.so
%_includedir/*
%_pkgconfigdir/*.pc
%_libdir/cmake/%name

%changelog

Полный changelog можно просмотреть здесь

 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin