| 1 |
cebix |
1.10 |
# Note that this is NOT a relocatable package
|
| 2 |
|
|
%define ver 0.8
|
| 3 |
|
|
%define rel 1
|
| 4 |
|
|
%define prefix /usr
|
| 5 |
|
|
|
| 6 |
|
|
Summary: A free, portable Mac II emulator
|
| 7 |
|
|
Name: BasiliskII
|
| 8 |
|
|
Version: %ver
|
| 9 |
|
|
Release: %rel
|
| 10 |
cebix |
1.1 |
Copyright: GPL
|
| 11 |
cebix |
1.10 |
Group: Applications/Emulators
|
| 12 |
cebix |
1.11 |
Source: BasiliskII_src_22121999.tar.gz
|
| 13 |
cebix |
1.10 |
BuildRoot: /tmp/BasiliskII-%{ver}-root
|
| 14 |
cebix |
1.2 |
Packager: Christian Bauer <Christian.Bauer@uni-mainz.de>
|
| 15 |
cebix |
1.10 |
URL: http://www.uni-mainz.de/~bauec002/B2Main.html
|
| 16 |
|
|
Docdir: %{prefix}/doc
|
| 17 |
cebix |
1.1 |
|
| 18 |
|
|
%description
|
| 19 |
|
|
Basilisk II is a free, portable, Open Source 68k Mac emulator. It requires
|
| 20 |
|
|
a copy of a Mac ROM and a copy of MacOS to run. Basilisk II is freeware and
|
| 21 |
|
|
distributed under the GNU General Public License.
|
| 22 |
|
|
|
| 23 |
|
|
Some features of Basilisk II:
|
| 24 |
|
|
- Emulates either a Mac Classic (which runs MacOS 0.x thru 7.5)
|
| 25 |
|
|
or a Mac II series machine (which runs MacOS 7.x, 8.0 and 8.1),
|
| 26 |
|
|
depending on the ROM being used
|
| 27 |
|
|
- Color video display
|
| 28 |
|
|
- CD quality sound output
|
| 29 |
|
|
- Floppy disk driver (only 1.44MB disks supported)
|
| 30 |
|
|
- Driver for HFS partitions and hardfiles
|
| 31 |
|
|
- CD-ROM driver with basic audio functions
|
| 32 |
cebix |
1.8 |
- Easy file exchange with the host OS via a "Host Directory Tree" icon
|
| 33 |
|
|
on the Mac desktop
|
| 34 |
cebix |
1.1 |
- Ethernet driver
|
| 35 |
|
|
- Serial drivers
|
| 36 |
|
|
- SCSI Manager (old-style) emulation
|
| 37 |
|
|
- Emulates extended ADB keyboard and 3-button mouse
|
| 38 |
|
|
- Uses UAE 68k emulation or (under AmigaOS) real 68k processor
|
| 39 |
|
|
|
| 40 |
|
|
%prep
|
| 41 |
cebix |
1.4 |
%setup
|
| 42 |
cebix |
1.1 |
|
| 43 |
|
|
%build
|
| 44 |
|
|
cd src/Unix
|
| 45 |
cebix |
1.10 |
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
| 46 |
|
|
if [ "$SMP" != "" ]; then
|
| 47 |
|
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
| 48 |
|
|
make
|
| 49 |
|
|
else
|
| 50 |
|
|
make
|
| 51 |
|
|
fi
|
| 52 |
cebix |
1.1 |
|
| 53 |
|
|
%install
|
| 54 |
cebix |
1.10 |
rm -rf $RPM_BUILD_ROOT
|
| 55 |
cebix |
1.2 |
cd src/Unix
|
| 56 |
cebix |
1.10 |
make prefix=$RPM_BUILD_ROOT%{prefix} install
|
| 57 |
|
|
|
| 58 |
|
|
%clean
|
| 59 |
|
|
rm -rf $RPM_BUILD_ROOT
|
| 60 |
cebix |
1.1 |
|
| 61 |
|
|
%files
|
| 62 |
cebix |
1.10 |
%defattr(-, root, root)
|
| 63 |
cebix |
1.3 |
%doc ChangeLog COPYING INSTALL README TECH TODO
|
| 64 |
cebix |
1.6 |
/usr/bin/BasiliskII
|
| 65 |
cebix |
1.2 |
/usr/man/man1/BasiliskII.1
|
| 66 |
|
|
/usr/share/BasiliskII/keycodes
|
| 67 |
cebix |
1.10 |
/usr/share/BasiliskII/fbdevices
|