Initial import (1036754)
This commit is contained in:
parent
60f3a7d8b3
commit
13e9e85c8f
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/v1.1.tar.gz
|
42
ttembed.spec
Normal file
42
ttembed.spec
Normal 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
|
Loading…
Reference in New Issue
Block a user