Initial import (1036754)

This commit is contained in:
Petr Vobornik 2013-12-11 16:17:15 +01:00
parent 60f3a7d8b3
commit 13e9e85c8f
3 changed files with 44 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/v1.1.tar.gz

View File

@ -0,0 +1 @@
1eccad30e260d4ccd2a1f8a9b1a165ce v1.1.tar.gz

42
ttembed.spec Normal file
View File

@ -0,0 +1,42 @@
Name: ttembed
Version: 1.1
Release: 1%{?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 Dec 2 2013 Petr Vobornik <pvoborni@redhat.com> - 1.1-1
- initial package