]> git.pld-linux.org Git - packages/drizzle.git/blob - drizzle.spec
- fix build, BR protobuf for protoc and protobuf-devel for -lprotobuf
[packages/drizzle.git] / drizzle.spec
1 Summary:        A Lightweight SQL Database for Cloud and Web
2 Name:           drizzle
3 Version:        0
4 Release:        0.1
5 License:        GPL v2
6 Group:          Applications/Databases
7 Source0:        %{name}.tar.bz2
8 # Source0-md5:  749e9c0d3591f6381ee84a27abafd074
9 URL:            https://launchpad.net/drizzle
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  libstdc++-devel
13 BuildRequires:  libtool
14 BuildRequires:  protobuf
15 BuildRequires:  protobuf-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 The Drizzle project is building a database optimized for Cloud and Net
20 applications. It is being designed for massive concurrency on modern
21 multi-cpu/core architecture. The code is originally derived from
22 MySQL.
23
24 The project is focused on making a database that is:
25 - Reliable
26 - Fast and scalable on modern architecture
27 - Simply design for ease of installation and management
28
29 %prep
30 %setup -q -n %{name}
31
32 %build
33 %{__libtoolize} --automake
34 %{__aclocal} -I m4
35 %{__autoheader}
36 %{__automake}
37 %{__autoconf}
38 %configure
39 %{__make}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 %{__make} install \
45         DESTDIR=$RPM_BUILD_ROOT
46
47 %clean
48 rm -rf $RPM_BUILD_ROOT
49
50 %files
51 %defattr(644,root,root,755)
52 %doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
This page took 0.095407 seconds and 4 git commands to generate.