diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-22 15:00:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-22 15:00:08 +0000 |
commit | 78b5ba3eb73f9fce0eb72061747846c507fd6cd2 (patch) | |
tree | a4a538526a61661c0e4accf6475a4752731c781f /rpm | |
parent | 0d3726c3fb54d21126a030c445dc2a5245afaacd (diff) | |
download | glibc-78b5ba3eb73f9fce0eb72061747846c507fd6cd2.tar.gz |
Sat Jun 22 10:44:09 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* rpm/template (Source): New field.
(%prep, %build, %install): New sections.
(%files): Add %doc FAQ NEWS NOTES README.
* rpm/rpmrc (builddir): Removed.
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/rpmrc | 1 | ||||
-rw-r--r-- | rpm/template | 16 |
2 files changed, 16 insertions, 1 deletions
@@ -1,4 +1,3 @@ -builddir: . rpmdir: . srcrpmdir: . specdir: . diff --git a/rpm/template b/rpm/template index 3d88336608..f4c2e9f7d7 100644 --- a/rpm/template +++ b/rpm/template @@ -4,5 +4,21 @@ Group: Development/Libraries/Libc Version: @VERSION@ Release: 1 Copyright: LGPL, GPL +Source: glibc-@VERSION@.tar.gz + +%prep +%setup + +%build +configure --prefix=/usr +cat >configparms <<EOF +slibdir=/lib +sysconfdir=/etc +EOF +make + +%install +make install %files +%doc FAQ NEWS NOTES README |