]> git.pld-linux.org Git - packages/acidlaunch.git/blob - acidlaunch.spec
- added c++ patch
[packages/acidlaunch.git] / acidlaunch.spec
1 Summary:        Small, light-weight app launcher with a simple XML-based configuration
2 Summary(pl.UTF-8):      Mały, lekki program do uruchamiania aplikacji z prostą konfiguracją w XML-u
3 Name:           acidlaunch
4 Version:        0.5
5 Release:        1
6 License:        LGPL v2.1
7 Group:          X11/Applications
8 Source0:        http://linuxgamers.net/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  7c90e429d5883b9f109a52e024597fab
10 Patch0:         %{name}-ac.patch
11 Patch1:         %{name}-gcc4.patch
12 Patch2:         %{name}-c++.patch
13 URL:            http://linuxgamers.net/infoPage.php?page=acidlaunch
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  gdk-pixbuf-devel >= 0.9.0
17 BuildRequires:  gtk+-devel >= 1.2.0
18 BuildRequires:  libstdc++-devel
19 BuildRequires:  libtool
20 BuildRequires:  libxml2-devel >= 2.4.0
21 BuildRequires:  xorg-lib-libX11-devel
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 acidlaunch is a small, light-weight app launcher with a simple
26 XML-based configuration syntax. It's written in C++ using gtk,
27 gdk-pixbuf and libxml2. It's great as a small, simple app launcher,
28 and it can optionally run in a withdrawn mode for embedding in the
29 blackbox slit.
30
31 %description -l pl.UTF-8
32 acidlaunch jest małym, lekkim programem do uruchamiania aplikacji z
33 konfiguracją o prostej składni, bazującą na XML-u. Jest napisany w C++
34 z użyciem gtk, gdk-pixbuf i libxml2. Jest wspaniały jako małe
35 narzędzie do uruchamiania aplikacji i może opcjonalnie uruchamiać w
36 trybie osadzenia w szczelinie blackboksa.
37
38 %prep
39 %setup -q
40 %patch0 -p1
41 %patch1 -p1
42 %patch2 -p1
43
44 %build
45 %{__aclocal}
46 %{__autoconf}
47 %{__autoheader}
48 %{__automake}
49 %configure
50 %{__make}
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54
55 %{__make} install \
56         DESTDIR=$RPM_BUILD_ROOT \
57         m4datadir=%{_aclocaldir}
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %files
63 %defattr(644,root,root,755)
64 %doc ChangeLog AUTHORS NEWS README
65 %attr(755,root,root) %{_bindir}/acidlaunch
66 %dir %{_datadir}/%{name}
67 %{_datadir}/%{name}/default.png
68 %{_datadir}/%{name}/config.xml
69 %{_mandir}/man1/acidlaunch.1*
This page took 0.060357 seconds and 3 git commands to generate.