- Update to version 0.2.0 * set default value of --enable-external-keyboards to 'no' * hangul_init: add user_defined_keyboard_path argument * add hangul_ic_switch_keyboard_table() * load both builtin and external keyboards OBS-URL: https://build.opensuse.org/request/show/1287618 OBS-URL: https://build.opensuse.org/package/show/M17N/libhangul?expand=0&rev=29
113 lines
3.2 KiB
RPMSpec
113 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package libhangul
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define soname 1
|
|
Name: libhangul
|
|
Version: 0.2.0
|
|
Release: 0
|
|
Summary: The Hangul input library
|
|
License: LGPL-2.1-or-later
|
|
Group: System/I18n/Korean
|
|
URL: https://github.com/libhangul/libhangul
|
|
Source: https://github.com/libhangul/libhangul/releases/download/libhangul-%{version}/libhangul-%{version}.tar.gz
|
|
Source99: baselibs.conf
|
|
# FIX-FOR-SLES downgrade gettext requirement to 0.14 from 0.18
|
|
Patch0: fix-for-sles-gettext-version.patch
|
|
BuildRequires: intltool
|
|
BuildRequires: libexpat-devel
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
Hangul input library used by scim-hangul and ibus-hangul
|
|
|
|
%package -n %{name}%{soname}
|
|
Summary: The Hangul input library
|
|
Group: System/I18n/Korean
|
|
|
|
%description -n %{name}%{soname}
|
|
Hangul input library used by scim-hangul and ibus-hangul
|
|
|
|
%package devel
|
|
Summary: Development headers for libhangul
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name}%{soname} = %{version}
|
|
|
|
%description devel
|
|
This package contains all necessary include files and libraries needed
|
|
to develop applications that require libhangul.
|
|
|
|
%prep
|
|
%setup -q
|
|
%if 0%{?sles_version}
|
|
%patch -P 0 -p1
|
|
%endif
|
|
# Fix for factory gettext version
|
|
%if 0%{?suse_version} > 1310
|
|
sed -i "s/0\.18/0\.19/" configure.ac
|
|
%endif
|
|
# fix for configure.ac
|
|
if [ ! -f config.rpath ]; then
|
|
touch config.rpath
|
|
fi
|
|
#NOCONFIGURE=1 ./autogen.sh
|
|
# Can't merge with the %%if 0%{?sles_version} above,
|
|
# This applies _after_ the autogen.sh
|
|
%if 0%{?sles_version}
|
|
# MKINSTALLDIRS doesn't exist, use MKDIR_P
|
|
sed -i "s/@MKINSTALLDIRS@/@MKDIR_P@/" po/Makefile.in.in
|
|
sed -i "32d" po/Makefile.in.in
|
|
sed -i "32imkinstalldirs= @mkdir_p@" po/Makefile.in.in
|
|
cat po/Makefile.in.in
|
|
%endif
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
export CXXFLAGS="%{optflags}"
|
|
%configure --disable-static --with-pic
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
%find_lang %{name}
|
|
|
|
%post -n %{name}%{soname} -p /sbin/ldconfig
|
|
%postun -n %{name}%{soname} -p /sbin/ldconfig
|
|
|
|
%files -n %{name}%{soname} -f %{name}.lang
|
|
# /usr/share/licenses is not owned by any package on SLE 12 SP2 and older
|
|
%if 0%{?sle_version} <= 120200 && !0%{?is_opensuse}
|
|
%license COPYING
|
|
%else
|
|
%license COPYING
|
|
%endif
|
|
%doc AUTHORS NEWS README
|
|
%{_bindir}/hangul
|
|
%{_libdir}/libhangul.so.1
|
|
%{_libdir}/libhangul.so.1.1.0
|
|
%{_datadir}/libhangul/
|
|
|
|
%files devel
|
|
%dir %{_includedir}/hangul-1.0/
|
|
%{_includedir}/hangul-1.0/*
|
|
%{_libdir}/libhangul.so
|
|
%{_libdir}/pkgconfig/libhangul.pc
|
|
|
|
%changelog
|