forked from pyzy/pyzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyzy.spec.in
107 lines (84 loc) · 2.55 KB
/
pyzy.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
Name: @PACKAGE_NAME@
Version: @PACKAGE_VERSION@
Release: 1%{?dist}
Summary: The Chinese PinYin and Bopomofo conversion library.
License: LGPL2.1
Group: System Environment/Libraries
URL: http://code.google.com/p/pyzy
Source0: http://pyzy.googlecode.com/files/%{name}-%{version}.tar.gz
Source1: http://pyzy.googlecode.com/files/pyzy-database-1.0.0.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: glib2
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: sqlite-devel
BuildRequires: libuuid-devel
# Requires(post): sqlite
Requires: pyzy-db = %{version}-%{release}
%description
The Chinese Pinyin and Bopomofo conversion library.
%package devel
Summary: Development tools for pyzy
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: glib2-devel
%description devel
The pyzy-devel package contains the header files for pyzy.
%package db-open-phrase
Summary: The open phrase database for pyzy
Group: System Environment/Libraries
BuildArch: noarch
Provides: pyzy-db
Requires(post): sqlite
%description db-open-phrase
The phrase database for pyzy from open-phrase project.
%package db-android
Summary: The android phrase database for pyzy
Group: System Environment/Libraries
BuildArch: noarch
Provides: pyzy-db
Requires(post): sqlite
%description db-android
The phrase database for pyzy from android project.
%prep
%setup -q
%build
%configure --disable-static --enable-db-open-phrase
# make -C po update-gmo
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
# make DESTDIR=${RPM_BUILD_ROOT} NO_INDEX=true install
make DESTDIR=$RPM_BUILD_ROOT install
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post
# cd %{_datadir}/@PACKAGE@/db
# sqlite3 android.db ".read create_index.sql"
%post db-open-phrase
# cd %{_datadir}/@PACKAGE@/db
# sqlite3 open-phrase.db ".read create_index.sql"
%post db-android
# cd %{_datadir}/@PACKAGE@/db
# sqlite3 android.db ".read create_index.sql"
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%{_libdir}/lib*.so.*
%{_datadir}/@PACKAGE@/phrases.txt
%{_datadir}/@PACKAGE@/db/create_index.sql
%dir %{_datadir}/@PACKAGE@
%dir %{_datadir}/@PACKAGE@/db
%files devel
%defattr(-,root,root,-)
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/*
%{_includedir}/*
%files db-open-phrase
%{_datadir}/@PACKAGE@/db/open-phrase.db
%files db-android
%{_datadir}/@PACKAGE@/db/android.db
%changelog
* Fri Aug 08 2008 Peng Huang <[email protected]> - @VERSION@-1
- The first version.