Blame adobe-afdko.spec

21801ed
%global archivename afdko
21801ed
21801ed
Name:		adobe-afdko
21801ed
Version:	3.2.0
21801ed
Release:	1%{?dist}
21801ed
Summary:	Adobe Font Development Kit for OpenType
21801ed
License:	ASL 2.0
21801ed
URL:		https://github.com/adobe-type-tools/afdko
21801ed
Source0:	https://github.com/adobe-type-tools/%{archivename}/releases/download/%{version}/%{archivename}-%{version}.tar.gz
21801ed
BuildRequires:	gcc
21801ed
BuildRequires:	make
21801ed
21801ed
%description
21801ed
Adobe Font Development Kit for OpenType (AFDKO).
21801ed
The AFDKO is a set of tools for building OpenType font files
21801ed
from PostScript and TrueType font data.
21801ed
21801ed
%prep
21801ed
%autosetup -n %{archivename}-%{version}
21801ed
21801ed
%build
21801ed
%set_build_flags
21801ed
pushd c
21801ed
sh buildalllinux.sh release
21801ed
# rename makeotfexe to makeotf
21801ed
mv build_all/makeotfexe build_all/makeotf
21801ed
popd
21801ed
21801ed
%install
21801ed
install -m 0755 -d %{buildroot}/%{_bindir}
21801ed
pushd c/build_all
21801ed
find ./ -type f -executable -exec install -p -m 0755 "{}" \
21801ed
	%{buildroot}/%{_bindir} ";"
21801ed
21801ed
%files
21801ed
%license LICENSE.md
21801ed
%doc docs/ README.md NEWS.md
21801ed
%{_bindir}/*
21801ed
21801ed
%changelog
21801ed
* Fri Apr 3 2020 Vishal Vijayraghavan <vishalvvr@fedoraproject.org> - 3.2.0-1
21801ed
- Build for latest release
21801ed
21801ed
* Mon Mar 23 2020 Vishal Vijayraghavan <vishalvvr@fedoraproject.org> - 3.0.1-4
21801ed
- rename package name afdko to adobe-afdko
21801ed
21801ed
* Mon Mar 9 2020 Vishal Vijayraghavan <vishalvvr@fedoraproject.org> - 3.0.1-3
21801ed
- Added %%set_build_flags
21801ed
- Updated install script
21801ed
21801ed
* Mon Mar 2 2020 Vishal Vijayraghavan <vishalvvr@fedoraproject.org> - 3.0.1-2
21801ed
- Added build dependency gcc, make
21801ed
- Removed unused build dependency
21801ed
- Rename makeotfexe to makeotf
21801ed
21801ed
* Fri Dec 13 2019 Peng Wu <pwu@redhat.com> - 3.0.1-1
21801ed
- Initial Version