]> git.pld-linux.org Git - SPECS.git/blob - xemacs-edebug-pkg.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / xemacs-edebug-pkg.spec
1 Summary:        An Emacs Lisp debugger
2 Summary(pl.UTF-8):      Debugger do Emacs Lispa
3 Name:           xemacs-edebug-pkg
4 %define         srcname edebug
5 Version:        1.22
6 Release:        1
7 License:        GPL
8 Group:          Applications/Editors/Emacs
9 Source0:        http://ftp.xemacs.org/xemacs/packages/%{srcname}-%{version}-pkg.tar.gz
10 # Source0-md5:  6e09f822e66a8ce871b0cee68387e244
11 URL:            http://www.xemacs.org/
12 BuildArch:      noarch
13 Conflicts:      xemacs-sumo
14 Requires:       xemacs
15 Requires:       xemacs-base-pkg
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 An Emacs Lisp debugger.
20
21 %description -l pl.UTF-8
22 Debugger do Emacs Lispa.
23
24 %prep
25 %setup -q -c
26
27 %install
28 rm -rf $RPM_BUILD_ROOT
29 install -d $RPM_BUILD_ROOT%{_datadir}/xemacs-packages
30
31 cp -a * $RPM_BUILD_ROOT%{_datadir}/xemacs-packages
32
33 # remove .el file if corresponding .elc file exists
34 find $RPM_BUILD_ROOT -type f -name "*.el" | while read i; do test ! -f ${i}c || rm -f $i; done
35
36 %clean
37 rm -rf $RPM_BUILD_ROOT
38
39 %files
40 %defattr(644,root,root,755)
41 %doc lisp/edebug/README lisp/edebug/ChangeLog
42 %dir %{_datadir}/xemacs-packages/lisp/*
43 %{_datadir}/xemacs-packages/lisp/*/*.el*
This page took 0.704542 seconds and 3 git commands to generate.