49 lines
1.4 KiB
RPMSpec
49 lines
1.4 KiB
RPMSpec
Name: ttembed
|
|
Version: 1.1
|
|
Release: 3%{?dist}
|
|
Summary: Remove embedding limitations from TrueType fonts
|
|
License: Public Domain
|
|
URL: https://github.com/hisdeedsaredust/ttembed
|
|
Source0: https://github.com/hisdeedsaredust/ttembed/archive/v%{version}.tar.gz
|
|
|
|
%description
|
|
Remove embedding limitations from TrueType fonts, by setting the fsType field
|
|
in the OS/2 table to zero. That's it; this program is a one-trick pony.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
export CFLAGS="$CFLAGS %{optflags}"
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
install -d %{buildroot}%{_bindir}
|
|
install -p -m 755 %{name} %{buildroot}%{_bindir}
|
|
install -d %{buildroot}%{_mandir}/man1/
|
|
install -p -m 644 %{name}.1 %{buildroot}%{_mandir}/man1/
|
|
|
|
%files
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/*
|
|
%doc LICENSE README.md
|
|
|
|
%check
|
|
# smoke test - fail on not font file
|
|
echo 'not a font' > test
|
|
if [[ "$(./ttembed test 2>&1)" != "test: Not TTF/OTF" ]] ; then
|
|
echo "TEST FAIL: not a font input test" 1>&2
|
|
exit 1
|
|
fi
|
|
rm test
|
|
|
|
%changelog
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Mon Dec 2 2013 Petr Vobornik <pvoborni@redhat.com> - 1.1-1
|
|
- initial package
|