]> git.pld-linux.org Git - packages/dbui.git/blame_incremental - dbui.spec
- tabs in preamble
[packages/dbui.git] / dbui.spec
... / ...
CommitLineData
1Summary: It's a GTK+ interface to MySQL/PostgreSQL databases
2Summary(pl.UTF-8): Interfejs GTK+ do baz danych MySQL/PostgreSQL
3Name: dbui
4Version: 0.4.0
5Release: 4
6License: GPL
7Group: Applications/Databases/Interfaces
8Source0: http://spyder.virtualbeer.net/dbui/%{name}-%{version}.tar.gz
9# Source0-md5: 962828bfc9bdb64697111624090bcfef
10URL: http://spyder.virtualbeer.net/dbui/
11# BuildRequires: postgresql-devel
12BuildRequires: gtk+-devel
13BuildRequires: mysql-devel
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17It's a GTK+ interface to MySQL/PostgreSQL databases. You might say a
18database editor. It's still in its very early stages but you can fully
19search, update, add, and delete any MySQL/PostgreSQL database.
20
21%description -l pl.UTF-8
22To jest interfejs GTK+ do baz danych MySQL/PostgreSQL. Można go nazwać
23edytorem baz danych. Nadal jest we wstępnym stadium rozwoju, ale można
24już przeszukiwać, uaktualniać, dodawać i usuwać z baz
25MySQL/PostgreSQL.
26
27%package mysql
28Summary: dbui linked with MySQL
29Summary(pl.UTF-8): dbui skonsolidowane z MySQL
30Group: Applications/Databases/Interfaces
31Requires: %{name} = %{version}-%{release}
32
33%description mysql
34dbui linked with MySQL.
35
36%description mysql -l pl.UTF-8
37dbui skonsolidowane z MySQL.
38
39%package postgresql
40Summary: dbui linked with PostgreSQL
41Summary(pl.UTF-8): dbui skonsolidowane z PostgreSQL
42Group: Applications/Databases/Interfaces
43Requires: %{name} = %{version}-%{release}
44
45%description postgresql
46dbui linked with PostgreSQL.
47
48%description postgresql -l pl.UTF-8
49dbui skonsolidowane z PostgreSQL.
50
51%prep
52%setup -q
53
54%build
55%{__make} -f Makefile.mysql
56mv -f dbui dbui.mysql
57
58#due to incompatibility with latest postgres libraries it doesn't compile
59#correctly
60# %{__make} -f Makefile.postgres
61# mv -f dbui dbui.postgresql
62
63%install
64rm -rf $RPM_BUILD_ROOT
65install -d $RPM_BUILD_ROOT%{_bindir}
66
67install dbui.mysql $RPM_BUILD_ROOT%{_bindir}
68# install dbui.postgresql $RPM_BUILD_ROOT%{_bindir}
69
70%clean
71rm -rf $RPM_BUILD_ROOT
72
73%files
74%defattr(644,root,root,755)
75%doc README
76
77%files mysql
78%defattr(644,root,root,755)
79%attr(755,root,root) %{_bindir}/dbui.mysql
80
81# %files postgresql
82# %defattr(644,root,root,755)
83# %attr(755,root,root) %{_bindir}/dbui.postgresql
This page took 0.050846 seconds and 4 git commands to generate.