You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.5 KiB
103 lines
3.5 KiB
## |
|
## icu.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2021 OpenPKG Project <http://openpkg.org/> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# package version |
|
%define V_opkg 68.2 |
|
%define V_dist 68_2 |
|
%define V_tag 68-2 |
|
|
|
# package information |
|
Name: icu |
|
Summary: International Components for Unicode (ICU) |
|
URL: http://www.icu-project.org/ |
|
Vendor: IBM et al. |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: PLUS |
|
Group: Charset |
|
License: IBM Open Source |
|
Version: %{V_opkg} |
|
Release: 20210409 |
|
|
|
# list of sources |
|
Source0: https://github.com/unicode-org/icu/releases/download/release-%{V_tag}/icu4c-%{V_dist}-src.tgz |
|
Patch0: icu.patch |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, make, gcc, gcc::with_cxx = yes |
|
PreReq: OpenPKG, openpkg >= 20160101 |
|
|
|
%description |
|
ICU is a mature, widely used set of C/C++ libraries for Unicode |
|
support and software internationalization and globalization |
|
(i18n/g11n). It grew out of the JDK 1.1 internationalization APIs |
|
(which the ICU team contributed) and continues to be developed for |
|
the most advanced Unicode/i18n support. ICU is widely portable and |
|
gives applications the same results on all platforms. |
|
|
|
%track |
|
prog icu = { |
|
version = %{V_dist} |
|
url = https://github.com/unicode-org/icu/releases |
|
regex = icu4c-(\d+\_\d+)-src\.tgz |
|
} |
|
|
|
%prep |
|
%setup -q -n icu |
|
%patch -p0 |
|
|
|
%build |
|
( cd source |
|
CC="%{l_cc}" \ |
|
CXX="%{l_cxx}" \ |
|
CFLAGS="%{l_cflags}" \ |
|
CXXFLAGS="%{l_cxxflags}" \ |
|
CPPFLAGS="-I`pwd`/common -I. %{l_cppflags}" \ |
|
LDFLAGS="%{l_ldflags}" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--mandir=%{l_prefix}/man \ |
|
--sysconfdir=%{l_prefix}/etc/icu \ |
|
--includedir=%{l_prefix}/include/icu \ |
|
--with-data-packaging=archive \ |
|
--enable-static \ |
|
--disable-shared \ |
|
--disable-samples \ |
|
--disable-layoutex \ |
|
--disable-renaming |
|
echo 'CPPFLAGS += -DICU_DATA_DIR=\"$(ICUPKGDATA_DIR)\"' >>icudefs.local |
|
%{l_make} %{l_mflags} |
|
) || exit $? |
|
|
|
%install |
|
( cd source |
|
%{l_make} %{l_mflags} install DESTDIR=$RPM_BUILD_ROOT |
|
) || exit $? |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib/icu >/dev/null 2>&1 || true |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
|