source: projects/specs/branches/6/s/seed/seed-vl.spec @ 2041

Revision 2041, 2.5 KB checked in by Takemikaduchi, 14 years ago (diff)

update to GNOME-2.32.0

Line 
1%define pkg_version 2.31.91
2%define pkg_release 1%{?_dist_release}
3
4Summary:        GObject JavaScriptCore bridge
5Name:           seed
6Version:        %{pkg_version}
7Release:        %{pkg_release}
8Source0:        http://ftp.gnome.org/pub/gnome/sources/seed/2.31/%{name}-%{version}.tar.bz2
9License:        LGPL
10Group:          System Environment/Libraries
11URL:            http://live.gnome.org/Seed/
12
13Requires:       gobject-introspection
14BuildRequires:  gobject-introspection-devel
15BuildRequires:  WebKit-gtk-devel
16BuildRequires:  readline-devel
17BuildRequires:  libffi-devel
18BuildRequires:  gnome-js-common
19BuildRequires:  sqlite3-devel
20BuildRequires:  clutter-devel
21BuildRequires:  clutter-gtk-devel
22BuildRequires:  cairo-devel
23BuildRequires:  gtk-doc
24BuildRequires:  dbus-devel
25BuildRequires:  dbus-glib-devel
26BuildRequires:  mpfr-devel
27BuildRoot: %{_tmppath}/%{name}-%{version}-root
28
29Vendor: Project Vine
30Distribution: Vine Linux
31Packager: Takemikaduchi
32
33
34%description
35Seed is a library and interpreter, dynamically bridging (through GObjectIntrospection)
36the WebKit JavaScriptCore engine, with the GNOME platform. Seed serves as something
37which enables you to write standalone applications in JavaScript, or easily enable your
38application to be extensible in JavaScript.
39
40%package devel
41Summary:        Development files for seed
42Group:          Development/Libraries
43Requires:       %{name} = %{version}-%{release}
44Requires:       WebKit-gtk-devel
45Requires:       gobject-introspection-devel
46Requires:       pkgconfig
47
48%description devel
49The devel-package contains header files to develop applications that use libseed.
50
51
52%prep
53%setup -q
54
55
56%build
57%configure --disable-static --with-webkit=1.0
58%{__make} %{?_smp_mflags}
59
60
61%install
62%{__rm} -rf ${RPM_BUILD_ROOT}
63%{__make} install DESTDIR=${RPM_BUILD_ROOT}
64
65## remove *.la
66%{__rm} -f ${RPM_BUILD_ROOT}/%{_libdir}/*.la
67%{__rm} -f ${RPM_BUILD_ROOT}/%{_libdir}/seed/*.la
68
69%clean
70%{__rm} -rf ${RPM_BUILD_ROOT}
71
72
73%files
74%defattr(-,root,root)
75%doc COPYING ChangeLog NEWS README
76%{_bindir}/seed
77%{_libdir}/libseed.so.*
78%{_libdir}/seed/*.so
79%{_datadir}/doc/seed
80%{_mandir}/man1/*
81%{_datadir}/seed
82
83%files devel
84%defattr(-,root,root)
85%{_includedir}/seed
86%{_libdir}/libseed.so
87%{_libdir}/pkgconfig/seed.pc
88%{_datadir}/gtk-doc/html/seed
89
90
91%changelog
92* Thu Oct 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.31.91-1
93- new upstream release
94- remove BuildRequires: gir-repository-devel
95- add configure option (--with-webkit=1.0)
96- fix %files
97
98* Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
99- rebuild with rpm-4.8.1 for pkg-config file
100
101* Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
102- initial build for Vine Linux
103
Note: See TracBrowser for help on using the repository browser.