diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-17 17:58:25 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-17 17:58:25 +0000 |
commit | ec103b683b1679b09e1d1a54b14a4ba178d67a37 (patch) | |
tree | baeb8862d2fbee36aa6c58c282a3383c9aeb7c4c /rpmtools.spec | |
parent | 30066bc80a46d6b873549c8d6b31e426195ecfbe (diff) | |
download | rpmtools-ec103b683b1679b09e1d1a54b14a4ba178d67a37.tar rpmtools-ec103b683b1679b09e1d1a54b14a4ba178d67a37.tar.gz rpmtools-ec103b683b1679b09e1d1a54b14a4ba178d67a37.tar.bz2 rpmtools-ec103b683b1679b09e1d1a54b14a4ba178d67a37.tar.xz rpmtools-ec103b683b1679b09e1d1a54b14a4ba178d67a37.zip |
Initial revisioncookertopic/MandrakeSoft
Diffstat (limited to 'rpmtools.spec')
-rw-r--r-- | rpmtools.spec | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/rpmtools.spec b/rpmtools.spec new file mode 100644 index 0000000..8dfe546 --- /dev/null +++ b/rpmtools.spec @@ -0,0 +1,65 @@ +%define name rpmtools +%define version 1.0 +%define release 8mdk + +Summary: contains various rpm command-line tools +Name: %{name} +Version: %{version} +Release: %{release} +Source0: %{name}.tar.bz2 +Copyright: GPL +Group: System Environment/Base +BuildRoot: /tmp/%{name}-buildroot +Prefix: %{_prefix} +BuildRequires: rpm- + +%description +Various rpmtools. + +%prep +%setup -n %{name} + +%build +make + +%install +make install PREFIX=$RPM_BUILD_ROOT + +%clean +rm -rf $RPM_BUILD_ROOT +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +/usr/bin/* + + +%changelog +* Thu Feb 17 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.0-8mdk +- Porting to rpm-3.0.4. + +* Tue Jan 4 2000 Pixel <pixel@mandrakesoft.com> +- renamed hdlist2files in hdlist2names +- added hdlist2files + +* Sun Dec 19 1999 Pixel <pixel@mandrakesoft.com> +- added ability to read from stdin to hdlist2files + +* Sat Dec 18 1999 Pixel <pixel@mandrakesoft.com> +- modified gendepslist to accept hdlist's from stdin + +* Thu Nov 25 1999 Pixel <pixel@linux-mandrake.com> +- removed rpm-find-leaves (now in urpmi) + +* Sun Nov 21 1999 Pixel <pixel@mandrakesoft.com> +- now installed in /usr/bin +- added rpm-find-leaves +- replaced -lrpm by /usr/lib/librpm.so.0 to make it dynamic +(why is this needed?) + +* Mon Nov 15 1999 Pixel <pixel@mandrakesoft.com> + +- first version + + +# end of file |