diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-23 06:50:10 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-02-23 06:50:10 +0000 |
commit | ea7335a5eb3fcab424caec4d50b1be5e55bd921b (patch) | |
tree | a812f11fa9dfd6ad27e87b96024e2049187cd071 | |
parent | 48bff1047b38c3f134a179786438440cc691f227 (diff) | |
download | spec-helper-ea7335a5eb3fcab424caec4d50b1be5e55bd921b.tar spec-helper-ea7335a5eb3fcab424caec4d50b1be5e55bd921b.tar.gz spec-helper-ea7335a5eb3fcab424caec4d50b1be5e55bd921b.tar.bz2 spec-helper-ea7335a5eb3fcab424caec4d50b1be5e55bd921b.tar.xz spec-helper-ea7335a5eb3fcab424caec4d50b1be5e55bd921b.zip |
"See_The_Changelog"
-rw-r--r-- | Howto-spec-helper | 29 | ||||
-rw-r--r-- | spec-helper.spec | 9 |
2 files changed, 37 insertions, 1 deletions
diff --git a/Howto-spec-helper b/Howto-spec-helper new file mode 100644 index 0000000..91b4037 --- /dev/null +++ b/Howto-spec-helper @@ -0,0 +1,29 @@ +From: Frederic Lepied <flepied@mandrakesoft.com> +Subject: [Cooker] spec-helper +To: cooker@linux-mandrake.com +Date: 22 Feb 2000 14:45:21 +0100 + +For information. + +Starting from rpm-3.0.4-0.2mdk, the spec-helper package must be +installed as a dependency of the rpm-build package. + +The spec-helper script is called automatically at the end of the +%install section to compress info and man pages, strip files and +remove backup files from the $RPM_BUILD_ROOT dir. The %install section +can be cleaned off this tasks but the %files section about man and +info pages must be specified without the .bz2 extension but with an * +instead. The goal is to have vendor neutral spec files. + +Example: + +%files +/usr/man/man1/alias.1* + +and not + +%files +/usr/man/man1/alias.1.bz2 + +-- +Fred - May the source be with you
\ No newline at end of file diff --git a/spec-helper.spec b/spec-helper.spec index b85e787..c44389d 100644 --- a/spec-helper.spec +++ b/spec-helper.spec @@ -1,6 +1,6 @@ %define name spec-helper %define version 0.1 -%define release 1mdk +%define release 3mdk Summary: Tools to ease the creation of rpm packages Name: %{name} @@ -33,9 +33,16 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) +%doc Howto-spec-helper ChangeLog /usr/share/spec-helper %changelog +* Tue Feb 22 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 0.1-3mdk +- Add mail of fred about spec-helper as doc. + +* Fri Feb 18 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 0.1-2mdk +- cvs import. + * Fri Feb 18 2000 Frederic Lepied <flepied@mandrakesoft.com> 0.1-1mdk - first version. |