Browse Source

courier-unicode 1.1-1

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@9231 ec354946-7b23-47d6-9f5a-488ba84defc7
iwaim 9 years ago
parent
commit
6a84eb9426
1 changed files with 67 additions and 0 deletions
  1. 67 0
      c/courier-unicode/courier-unicode-vl.spec

+ 67 - 0
c/courier-unicode/courier-unicode-vl.spec

@@ -0,0 +1,67 @@
+%define ver 1.1
+%define rel 1
+
+Summary: Courier Unicode Library
+Name: courier-unicode
+Version: %{ver}
+Release: %{rel}%{?_dist_release}
+License: GPL3
+Group: System Environment/Libraries
+URL: http://www.courier-mta.org/unicode/
+Source0: %{name}-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+%description
+This library implements several algorithms related to the Unicode Standard:
+
+- Look up uppercase, lowercase, and titlecase equivalents of a unicode
+  character.
+- Implementation of grapheme and work breaking rules.
+- Implementation of line breaking rules.
+- Several ancillary functions, like looking up the unicode character
+  that corresponds to some HTML 4.0 entity (such as “&”, for example),
+  and determining the normal width or a double-width status of a unicode
+  character. Also, an adaptation of the iconv(3) API for this unicode library.
+
+This library also implements C++ bindings for these algorithms.
+
+%package devel
+Summary: Libraries and header files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+Libraries and header files for %{name}
+
+Vendor: Project Vine
+Distribution: Vine Linux
+Packager: iwaim
+
+%prep
+%setup -q
+%configure --enable-shared --enable-static=no
+
+%build
+%__make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%makeinstall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING ChangeLog README
+%{_mandir}/man?/*
+%{_libdir}/*.so.*
+
+%files devel
+%{_includedir}/*
+%{_libdir}/*.so
+
+%changelog
+* Wed Jan  7 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.1-1
+- initial build for Vine Linux