ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/BasiliskII.spec
(Generate patch)

Comparing BasiliskII/BasiliskII.spec (file contents):
Revision 1.1 by cebix, 1999-10-03T14:16:25Z vs.
Revision 1.13 by cebix, 2000-10-05T17:24:47Z

# Line 1 | Line 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
1 > %define name BasiliskII
2 > %define version 0.8
3 > %define release 1
4 >
5 > Summary: Free, portable 68k Macintosh emulator
6 > Name: %{name}
7 > Version: %{version}
8 > Release: %{release}
9   Copyright: GPL
10 < Group:     Applications/Emulators
11 < Vendor: PLD
12 < Packager: Christian Bauer <Christian.Bauer@uni-mainz.de>
13 < BuildRoot: /tmp/%{name}-%{version}-root
10 > Group: Applications/Emulators
11 > Source: %{name}_src_05102000.tar.gz
12 > URL: http://www.uni-mainz.de/~bauec002/B2Main.html
13 > BuildRoot: %{_tmppath}/%{name}-root
14 > Prefix: %{_prefix}
15  
16   %description
17 < Basilisk II is a free, portable, Open Source 68k Mac emulator. It requires
18 < a copy of a Mac ROM and a copy of MacOS to run. Basilisk II is freeware and
19 < distributed under the GNU General Public License.
17 > Basilisk II is a free, portable, Open Source 68k Macintosh emulator. It
18 > requires a copy of a Mac ROM and a copy of MacOS to run. Basilisk II is
19 > freeware and distributed under the GNU General Public License.
20  
21   Some features of Basilisk II:
22    - Emulates either a Mac Classic (which runs MacOS 0.x thru 7.5)
# Line 24 | Line 27 | Some features of Basilisk II:
27    - Floppy disk driver (only 1.44MB disks supported)
28    - Driver for HFS partitions and hardfiles
29    - CD-ROM driver with basic audio functions
30 +  - Easy file exchange with the host OS via a "Host Directory Tree" icon
31 +    on the Mac desktop
32    - Ethernet driver
33    - Serial drivers
34    - SCSI Manager (old-style) emulation
# Line 35 | Line 40 | Some features of Basilisk II:
40  
41   %build
42   cd src/Unix
43 < ./configure --prefix=/usr
44 <
45 < make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
43 > ./configure --prefix=%{_prefix}
44 > if [ -x /usr/bin/getconf ] ; then
45 >  NCPU=$(/usr/bin/getconf _NPROCESSORS_ONLN)
46 >  if [ $NCPU -eq 0 ] ; then
47 >    NCPU=1
48 >  fi
49 > else  
50 >  NCPU=1
51 > fi
52 > PARL=$[ $NCPU + 1 ]
53 > make -j $PARL
54  
55   %install
56 < rm -rf $RPM_BUILD_ROOT
57 <
58 < 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
56 > rm -rf ${RPM_BUILD_ROOT}
57 > cd src/Unix
58 > make prefix=%{_prefix} DESTDIR=${RPM_BUILD_ROOT} install
59  
60   %clean
61 < rm -rf $RPM_BUILD_ROOT
61 > rm -rf ${RPM_BUILD_ROOT}
62  
63   %files
64   %defattr(-,root,root)
65 < %doc docs/*
66 < /usr/lib/BasiliskII
67 < /usr/X11R6/bin/*
65 > %doc ChangeLog COPYING INSTALL README TECH TODO
66 > %{_bindir}/BasiliskII
67 > %{_mandir}/man1/BasiliskII.1
68 > %{_datadir}/BasiliskII/keycodes
69 > %{_datadir}/BasiliskII/fbdevices
70  
71   %changelog
64 * Fri Jul 23 1999 Roman Niewiarowski <newrom@pasjo.net.pl>
65  [0.6-1]
66 - First rpm release

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines