1 |
cebix |
1.1 |
Summary: A free, portable Mac II emulator |
2 |
|
|
Name: BasiliskII |
3 |
|
|
Version: 0.7 |
4 |
|
|
Release: 2 |
5 |
|
|
URL: http://www.uni-mainz.de/~bauec002/B2Main.html |
6 |
|
|
Source: BasiliskII_src_250799.tar.gz |
7 |
|
|
Copyright: GPL |
8 |
|
|
Group: Applications/Emulators |
9 |
|
|
Vendor: PLD |
10 |
|
|
Packager: Christian Bauer <Christian.Bauer@uni-mainz.de> |
11 |
|
|
BuildRoot: /tmp/%{name}-%{version}-root |
12 |
|
|
|
13 |
|
|
%description |
14 |
|
|
Basilisk II is a free, portable, Open Source 68k Mac emulator. It requires |
15 |
|
|
a copy of a Mac ROM and a copy of MacOS to run. Basilisk II is freeware and |
16 |
|
|
distributed under the GNU General Public License. |
17 |
|
|
|
18 |
|
|
Some features of Basilisk II: |
19 |
|
|
- Emulates either a Mac Classic (which runs MacOS 0.x thru 7.5) |
20 |
|
|
or a Mac II series machine (which runs MacOS 7.x, 8.0 and 8.1), |
21 |
|
|
depending on the ROM being used |
22 |
|
|
- Color video display |
23 |
|
|
- CD quality sound output |
24 |
|
|
- Floppy disk driver (only 1.44MB disks supported) |
25 |
|
|
- Driver for HFS partitions and hardfiles |
26 |
|
|
- CD-ROM driver with basic audio functions |
27 |
|
|
- Ethernet driver |
28 |
|
|
- Serial drivers |
29 |
|
|
- SCSI Manager (old-style) emulation |
30 |
|
|
- Emulates extended ADB keyboard and 3-button mouse |
31 |
|
|
- Uses UAE 68k emulation or (under AmigaOS) real 68k processor |
32 |
|
|
|
33 |
|
|
%prep |
34 |
|
|
%setup -q |
35 |
|
|
|
36 |
|
|
%build |
37 |
|
|
cd src/Unix |
38 |
|
|
./configure --prefix=/usr |
39 |
|
|
|
40 |
|
|
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" |
41 |
|
|
|
42 |
|
|
%install |
43 |
|
|
rm -rf $RPM_BUILD_ROOT |
44 |
|
|
|
45 |
|
|
install -d $RPM_BUILD_ROOT/usr/lib/BasiliskII/Linux |
46 |
|
|
install -d $RPM_BUILD_ROOT/usr/X11R6/bin |
47 |
|
|
|
48 |
|
|
install -m755 -s src/Unix/BasiliskII $RPM_BUILD_ROOT/usr/X11R6/bin |
49 |
|
|
|
50 |
|
|
cp -R src/Unix/Linux/* $RPM_BUILD_ROOT/usr/lib/BasiliskII/Linux |
51 |
|
|
mkdir docs |
52 |
|
|
cp CHANGES COPYING README TECH TODO docs |
53 |
|
|
|
54 |
|
|
%clean |
55 |
|
|
rm -rf $RPM_BUILD_ROOT |
56 |
|
|
|
57 |
|
|
%files |
58 |
|
|
%defattr(-,root,root) |
59 |
|
|
%doc docs/* |
60 |
|
|
/usr/lib/BasiliskII |
61 |
|
|
/usr/X11R6/bin/* |
62 |
|
|
|
63 |
|
|
%changelog |
64 |
|
|
* Fri Jul 23 1999 Roman Niewiarowski <newrom@pasjo.net.pl> |
65 |
|
|
[0.6-1] |
66 |
|
|
- First rpm release |