]> git.pld-linux.org Git - packages/drizzle.git/blame - drizzle.spec
- new
[packages/drizzle.git] / drizzle.spec
CommitLineData
c13dbbfa
ER
1Summary: A Lightweight SQL Database for Cloud and Web
2Name: drizzle
3Version: 0
4Release: 0.1
5License: GPL v2
6Group: Applications/Databases
7Source0: %{name}.tar.bz2
8# Source0-md5: 749e9c0d3591f6381ee84a27abafd074
9URL: https://launchpad.net/drizzle
10BuildRequires: autoconf
11BuildRequires: automake
12BuildRequires: libstdc++-devel
13BuildRequires: libtool
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17The Drizzle project is building a database optimized for Cloud and Net
18applications. It is being designed for massive concurrency on modern
19multi-cpu/core architecture. The code is originally derived from
20MySQL.
21
22The 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
41rm -rf $RPM_BUILD_ROOT
42
43%{__make} install \
44 DESTDIR=$RPM_BUILD_ROOT
45
46%clean
47rm -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.057899 seconds and 4 git commands to generate.