]> git.pld-linux.org Git - packages/drizzle.git/blob - drizzle.spec
- ncurses patch
[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 Patch0:         %{name}-ncurses.patch
10 URL:            https://launchpad.net/drizzle
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libstdc++-devel
14 BuildRequires:  libtool
15 BuildRequires:  protobuf
16 BuildRequires:  protobuf-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 The Drizzle project is building a database optimized for Cloud and Net
21 applications. It is being designed for massive concurrency on modern
22 multi-cpu/core architecture. The code is originally derived from
23 MySQL.
24
25 The project is focused on making a database that is:
26 - Reliable
27 - Fast and scalable on modern architecture
28 - Simply design for ease of installation and management
29
30 %prep
31 %setup -q -n %{name}
32 %patch0 -p1
33
34 %build
35 %{__gettextize}
36 %{__libtoolize}
37 %{__aclocal} -I m4
38 %{__autoheader}
39 %{__automake}
40 %{__autoconf}
41 %configure
42 %{__make}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46
47 %{__make} install \
48         DESTDIR=$RPM_BUILD_ROOT
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
This page took 0.065168 seconds and 3 git commands to generate.