diff --git a/README.md b/README.md index 299f228..f1995fe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # psutils +Utilities for manipulating PostScript documents, including page selection and rearrangement, resizing the page, arrangement into signatures for booklet printing, and page merging for n-up printing. +Utilities include psbook, psselect, pstops, psnup, psresize, epsffit. + diff --git a/psutils.spec b/psutils.spec new file mode 100644 index 0000000..ddbec31 --- /dev/null +++ b/psutils.spec @@ -0,0 +1,59 @@ +Name: psutils +Version: 1.17 +Release: 3mamba +Summary: PostScript Utilities +Group: Applications/Publishing +Vendor: openmamba +Distribution: openmamba +Packager: Davide Madrisan +URL: http://www.ctan.org/tex-archive/support/psutils/ +Source: http://www.ctan.org/tex-archive/support/psutils/psutils.tar.gz +License: Distributable +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Utilities for manipulating PostScript documents, including page selection and rearrangement, resizing the page, arrangement into signatures for booklet printing, and page merging for n-up printing. +Utilities include psbook, psselect, pstops, psnup, psresize, epsffit. + +%prep +%setup -q -n psutils + +%build +make -f Makefile.unix \ + CC=%{_host}-gcc \ + BINDIR=%{_bindir} \ + MANDIR=%{_mandir}/man1 \ + INCLUDEDIR=%{_datadir}/psutils \ + PERL=%{_bindir}/perl + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +install -d %{buildroot}%{_bindir} +install -d %{buildroot}%{_mandir}/man1 +install -d %{buildroot}%{_datadir}/psutils + +make install -f Makefile.unix \ + BINDIR=%{buildroot}%{_bindir} \ + MANDIR=%{buildroot}%{_mandir}/man1 \ + INCLUDEDIR=%{buildroot}%{_datadir}/psutils \ + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%{_bindir}/* +%{_datadir}/psutils/* +%{_mandir}/man1/* +%doc LICENSE README + +%changelog +* Wed Apr 02 2008 Silvan Calarco 1.17-3mamba +- specfile updates + +* Wed Feb 16 2005 Davide Madrisan 1.17-2qilnx +- fixes in the specfile preamble + +* Thu Feb 26 2004 Davide Madrisan 1.17-1qilnx +- first build