mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
alien (8.95.2) experimental; urgency=medium
.
* QA upload.
* debian/control:
+ Bump debhelper compat to v13.
+ Included Rules-Requires-Root: no
* debian/changelog:
+ Removed trailing-whitespaces.
* alien.pl:
+ Fixed some misspelled words.
* Alien/Package.pm:
+ Fixed misspelled word.
* Alien/Package/Rpm.pm:
+ Fixed misspeled word.
* debian/rules:
+ Added a "nocheck" check on override_dh_auto_test.
35 lines
905 B
RPMSpec
35 lines
905 B
RPMSpec
Summary: Install Debian, Slackware, and Stampede packages with rpm.
|
|
Name: alien
|
|
Packager: Joey Hess <joey@kitenet.net>
|
|
Version: 8.95.2
|
|
Release: 1
|
|
Source: ftp://kitenet.net/pub/code/debian/alien_8.95.2.tar.gz
|
|
License: GPL
|
|
Group: Utilities/File
|
|
Buildroot: /tmp/alien-8.95.2.build
|
|
Requires: perl
|
|
BuildArchitectures: noarch
|
|
|
|
%description
|
|
Alien allows you to convert Debian, Slackware, and Stampede Packages into Red
|
|
Hat packages, which can be installed with rpm.
|
|
|
|
It can also generate Slackware, Debian and Stampede packages.
|
|
|
|
This is a tool only suitable for binary packages.
|
|
|
|
%prep
|
|
%setup -n alien
|
|
rm -rf /tmp/alien-8.95.2.build
|
|
|
|
%install
|
|
perl Makefile.PL PREFIX=$RPM_BUILD_ROOT/usr
|
|
make
|
|
make pure_install VARPREFIX=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -not -type d -printf "/%%P\n" | \
|
|
sed '/\/man\//s/$/\*/' > manifest
|
|
|
|
%files -f manifest
|
|
%defattr(-,root,root)
|
|
%doc debian/changelog GPL README alien.lsm
|