]> git.pld-linux.org Git - packages/urxvt.git/blob - urxvt.spec
- update to 4.0 by Kamil Kosiński <paladine@palanthas.homelinux.org>
[packages/urxvt.git] / urxvt.spec
1 Summary:        Rxvt terminal with unicode support and some improvements
2 Summary(pl):    Terminal Rxvt z obs³ug± unicode i kilkoma usprawnieniami
3 Name:           urxvt
4 Version:        4.0
5 Release:        1
6 Group:          X11/Applications
7 License:        GPL
8 Source0:        http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-%{version}.tar.bz2
9 # Source0-md5:  d2a9505ab50f79e7f65bbdfe675cdd58
10 Source1:        %{name}.desktop
11 URL:            http://software.schmorp.de
12 BuildRequires:  XFree86-devel
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
16 BuildRequires:  xft-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 URxvt is a Rxvt modification which includes:
21 - unicode support
22 - xft font support (antialiasing)
23 - background pixmaps
24 - background tinting
25
26 %description -l pl
27 URxvt jest modyfikacj± Rxvt uwzglêdniaj±c±:
28 - obs³ugê unicode
29 - obs³ugê czcionek xft (antialiasing)
30 - mo¿liwo¶æ ustawienia grafiki jako t³a
31 - cieniowanie t³a
32
33 %prep
34 %setup -q -n rxvt-unicode-%{version}
35
36 %build
37 mv -f autoconf/{configure.in,xpm.m4} .
38 #CFLAGS="%{rpmcflags} -DLINUX_KEYS"
39 %{__libtoolize}
40 %{__aclocal} -I .
41 %{__autoheader}
42 %{__autoconf}
43 %{__automake} || :
44 %configure \
45         --enable-everything \
46         --enable-xgetdefault \
47         --enable-mousewheel \
48         --disable-menubar \
49         --enable-next-scroll \
50         --enable-ttygid \
51         --with-term=rxvt \
52         --enable-half-shadow \
53         --enable-smart-resize \
54         --enable-256-color \
55         --enable-24bit
56 %{__make}
57
58 %install
59 rm -rf $RPM_BUILD_ROOT
60 install -d $RPM_BUILD_ROOT%{_mandir}/man{1,7}
61
62 %{__make} install \
63         DESTDIR=$RPM_BUILD_ROOT
64
65 install -d $RPM_BUILD_ROOT%{_desktopdir}
66 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
67 echo '.so urxvtc.1' >$RPM_BUILD_ROOT%{_mandir}/man1/urxvtd.1
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %doc doc/menu/* Changes doc/README.*
75 %attr(755,root,root) %{_bindir}/*
76 %{_desktopdir}/urxvt.desktop
77 %{_mandir}/man*/*
This page took 0.082968 seconds and 4 git commands to generate.