1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
Name: postscriptbarcode
Version: %(date +%%Y%%m%%d).nightly
Release: 1%{?dist}
Summary: Barcode Writer in Pure PostScript
Group: Development/Libraries/Other
License: MIT
URL: https://code.google.com/p/postscriptbarcode/
# https://github.com/terryburton/%{name}/archive/master.tar.gz
Source0: postscriptbarcode-master.tar.gz
BuildArch: noarch
BuildRequires: ghostscript
BuildRequires: perl
# Required for EPEL5 <= 5
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%description
Barcode Writer in Pure Postscript generates all barcode formats entirely
within PostScript so that the process of converting the input data into
the printed output can be performed by the printer or RIP itself. This is
ideal for variable data printing (VDP) and avoids the need to re-implement
the barcode generation process whenever your language needs change.
%prep
%setup -q -n %{name}-master
%build
fc-cache -f -v /usr/share/fonts/default/Type1
make -j `nproc`
make test
%install
mkdir -p %{buildroot}/%{_datadir}/%{name}
cp -p build/monolithic_package/barcode.ps %{buildroot}%{_datadir}/%{name}/barcode.ps
%files
%defattr(-,root,root)
%doc CHANGES LICENSE README TODO docs/*
%dir %{_datadir}/%{name}/
%{_datadir}/%{name}/barcode.ps
%changelog
* Fri Nov 08 2013 Terry Burton <tez@terryburton.co.uk> - 20131102-1
- Configure nightly OBS build
|