diff options
Diffstat (limited to 'rdiff-backup/dist')
-rwxr-xr-x | rdiff-backup/dist/makerpm | 19 | ||||
-rw-r--r-- | rdiff-backup/dist/rdiff-backup.spec | 1 |
2 files changed, 14 insertions, 6 deletions
diff --git a/rdiff-backup/dist/makerpm b/rdiff-backup/dist/makerpm index 1fa2c32..8f59f65 100755 --- a/rdiff-backup/dist/makerpm +++ b/rdiff-backup/dist/makerpm @@ -18,10 +18,17 @@ i386rpm = base+".i386.rpm" source_rpm = base+".src.rpm" tarfile = "-".join(base.split("-")[:-1]) + ".tar.gz" -assert not os.system("install -o root -g root -m 644 %s " - "/usr/src/redhat/SOURCES" % (tarfile,)) +# These assume the rpm root directory $HOME/rpm. The +# nonstandard location allows for building by non-root user. +assert not os.system("cp %s $HOME/rpm/SOURCES" % (tarfile,)) assert not os.system("rpm -ba --sign -vv --target i386 " + specfile) -assert not os.system("install -o ben -g ben -m 644 " - "/usr/src/redhat/RPMS/i386/%s ." % i386rpm) -assert not os.system("install -o ben -g ben -m 644 " - "/usr/src/redhat/SRPMS/%s ." % source_rpm) +assert not os.system("cp $HOME/rpm/RPMS/i386/%s ." % i386rpm) +assert not os.system("cp $HOME/rpm/SRPMS/%s ." % source_rpm) + +# Old root RPM instructions +#assert not os.system("install -o root -g root -m 644 %s " +# "/usr/src/redhat/SOURCES" % (tarfile,)) +#assert not os.system("install -o ben -g ben -m 644 " +# "/usr/src/redhat/RPMS/i386/%s ." % i386rpm) +#assert not os.system("install -o ben -g ben -m 644 " +# "/usr/src/redhat/SRPMS/%s ." % source_rpm) diff --git a/rdiff-backup/dist/rdiff-backup.spec b/rdiff-backup/dist/rdiff-backup.spec index 586fdd5..68b24b9 100644 --- a/rdiff-backup/dist/rdiff-backup.spec +++ b/rdiff-backup/dist/rdiff-backup.spec @@ -36,6 +36,7 @@ python2 setup.py install --prefix=$RPM_BUILD_ROOT/usr %defattr(-,root,root) /usr/bin/rdiff-backup /usr/share/doc/rdiff-backup-%{version} +/usr/share/man/man1 /usr/lib |