mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-11-04 20:08:00 +00:00
32 lines
531 B
RPMSpec
32 lines
531 B
RPMSpec
Summary: EPPLE ][, The Emulated Apple ][
|
|
Name: epple2
|
|
Version: 1.0
|
|
Release: 1
|
|
Source: %{name}-%{version}.tar.gz
|
|
License: GPL
|
|
Group: System/Emulators/Other
|
|
|
|
%description
|
|
EPPLE ][ is an emulator of Apple ][ and Apple ][ plus computers.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
cd ../../VPATH
|
|
if [ -x ./config.status ]
|
|
then
|
|
./config.status
|
|
else
|
|
../BUILD/%{name}-%{version}/configure --prefix=%{_prefix} --sysconfdir=%{_sysconfdir}
|
|
fi
|
|
make
|
|
|
|
%install
|
|
cd ../../VPATH
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
%files
|
|
%{_bindir}/%{name}
|
|
%{_sysconfdir}/%{name}
|