~ubuntu-branches/ubuntu/precise/arj/precise-security

« back to all changes in this revision

Viewing changes to gnu/arj.spec

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2004-06-27 08:07:09 UTC
  • Revision ID: james.westby@ubuntu.com-20040627080709-1gkxm72ex66gkwe4
Tags: upstream-3.10.21
ImportĀ upstreamĀ versionĀ 3.10.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Summary: Free and portable clone of the ARJ archiver
 
2
Name: arj
 
3
Version: 3.10
 
4
Release: 1
 
5
Copyright: GPL
 
6
Group: Applications/Archiving
 
7
Source: http://unc.dl.sourceforge.net/sourceforge/arj/%{name}-%{version}.tar.gz
 
8
BuildRoot: %{_tmppath}/%{name}-%{version}-root
 
9
BuildRequires: autoconf
 
10
 
 
11
%description
 
12
The arj program is a free clone of the ARJ archiver for DOS and Windows.
 
13
It can be used to create and extract archives and uses the save format
 
14
as the proprietary version.
 
15
 
 
16
Install the arj package if you need to uncompress and create .arj format
 
17
archives.
 
18
 
 
19
%prep
 
20
%setup -q -n arj
 
21
 
 
22
%build
 
23
cd gnu
 
24
autoconf
 
25
./configure
 
26
cd ..
 
27
make prepare RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
 
28
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
 
29
 
 
30
%install
 
31
rm -rf $RPM_BUILD_ROOT
 
32
mkdir -p $RPM_BUILD_ROOT/usr/bin
 
33
 
 
34
install -m 755 linux-gnu/en/rs/arj/arj $RPM_BUILD_ROOT/usr/bin/arj
 
35
install -m 755 linux-gnu/en/rs/arjdisp/arjdisp $RPM_BUILD_ROOT/usr/bin/arjdisp
 
36
install -m 755 linux-gnu/en/rs/rearj/rearj $RPM_BUILD_ROOT/usr/bin/rearj
 
37
 
 
38
%clean
 
39
rm -rf $RPM_BUILD_ROOT
 
40
 
 
41
%files
 
42
%defattr(-,root,root)
 
43
%doc doc/*
 
44
 
 
45
/usr/bin/*
 
46
 
 
47
%changelog
 
48
* Sun Dec 15 2002 Andrew Belov <andrew_belov@newmail.ru>
 
49
- Adapted for the previous naming changes
 
50
 
 
51
* Sat Dec 14 2002 Pavel Roskin <proski@gnu.org>
 
52
- Initial version
 
53