aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Matsuoka2001-11-20 01:49:27 +0000
committerClaudio Matsuoka2001-11-20 01:49:27 +0000
commit248ce87b2e1f15bd18c23536fe443f98b6bc17c0 (patch)
treeff73d15a1e0542333e32d6a4d84ac293f5277c65
parentdb0667318567bab150b17a199dbe311e6401dd9a (diff)
downloadscummvm-rg350-248ce87b2e1f15bd18c23536fe443f98b6bc17c0.tar.gz
scummvm-rg350-248ce87b2e1f15bd18c23536fe443f98b6bc17c0.tar.bz2
scummvm-rg350-248ce87b2e1f15bd18c23536fe443f98b6bc17c0.zip
Added RPM specfile.
svn-id: r3503
-rw-r--r--scummvm.spec38
1 files changed, 38 insertions, 0 deletions
diff --git a/scummvm.spec b/scummvm.spec
new file mode 100644
index 0000000000..3a9fec1805
--- /dev/null
+++ b/scummvm.spec
@@ -0,0 +1,38 @@
+Name: scummvm
+Version: 0.0.3
+Release: 1cm
+Summary: SCUMM graphic adventure game interpreter
+Group: Interpreters
+License: GPL
+Source: %{name}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+
+%description
+ScummVM is an interpreter that will play graphic adventure games written for
+LucasArts' SCUMM virtual machine. It uses the SDL library for outputting
+graphics.
+
+%prep
+%setup -q -n scummvm
+
+%build
+make
+
+%install
+install -m755 -D scummvm %{buildroot}%{_bindir}/scummvm
+install -m644 -D scummvm.6 %{buildroot}%{_mandir}/man6/scummvm.6
+
+%clean
+rm -Rf %{buildroot}
+
+%files
+%defattr(0644,root,root,0755)
+%doc readme.txt whatsnew.txt
+%attr(0755,root,root)%{_bindir}/scummvm
+%{_mandir}/man6/scummvm.6*
+
+%changelog
+* Mon Nov 19 2001 Claudio Matsuoka <claudio@helllabs.org>
++ scummvm-0.0.3-1cm
+- package creation
+