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