aboutsummaryrefslogtreecommitdiff
path: root/dists/redhat
diff options
context:
space:
mode:
authorEugene Sandulenko2005-10-11 20:41:10 +0000
committerEugene Sandulenko2005-10-11 20:41:10 +0000
commit8447b128e6a8b8835d17dc46ea94d071052b3533 (patch)
tree233721bf8d28639730615d5483703fa7b46ae921 /dists/redhat
parentad8a71783ad7c636ee64f5beb7fdef99138f1dd1 (diff)
downloadscummvm-rg350-8447b128e6a8b8835d17dc46ea94d071052b3533.tar.gz
scummvm-rg350-8447b128e6a8b8835d17dc46ea94d071052b3533.tar.bz2
scummvm-rg350-8447b128e6a8b8835d17dc46ea94d071052b3533.zip
Patch #1308891 "0.8.0 spec files for scummvm and scummvm-tools"
svn-id: r19026
Diffstat (limited to 'dists/redhat')
-rw-r--r--dists/redhat/scummvm-tools.spec60
-rw-r--r--dists/redhat/scummvm.spec7
2 files changed, 64 insertions, 3 deletions
diff --git a/dists/redhat/scummvm-tools.spec b/dists/redhat/scummvm-tools.spec
new file mode 100644
index 0000000000..c1e9d2afe1
--- /dev/null
+++ b/dists/redhat/scummvm-tools.spec
@@ -0,0 +1,60 @@
+#------------------------------------------------------------------------------
+# scummvm-tools.spec
+# This SPEC file controls the building of ScummVM Tools RPM packages.
+#------------------------------------------------------------------------------
+
+#------------------------------------------------------------------------------
+# Prologue information
+#------------------------------------------------------------------------------
+Name : scummvm-tools
+Version : 0.8.0
+Release : 1
+Summary : ScummVM-related tools
+Group : Interpreters
+License : GPL
+
+Url : http://www.scummvm.org
+
+Source : %{name}-%{version}.tar.bz2
+BuildRoot : %{_tmppath}/%{name}-%{version}-root
+
+BuildRequires : zlib-devel
+#------------------------------------------------------------------------------
+# Description
+#------------------------------------------------------------------------------
+%description
+Tools for compressing ScummVM datafiles and other related tools.
+
+#------------------------------------------------------------------------------
+# install scripts
+#------------------------------------------------------------------------------
+%prep
+%setup -q -n scummvm-tools-%{version}
+
+%build
+make
+
+%install
+install -m755 -D compress_queen %{buildroot}%{_bindir}/compress_queen
+install -m755 -D compress_{saga,san,scumm_sou,simon,sword1,sword2} %{buildroot}%{_bindir}
+install -m755 -D de{kyra,scumm,sword2} %{buildroot}%{_bindir}
+install -m755 -D extract_{kyra,loom_tg16,mm_nes,scumm_mac,simon1_amiga} %{buildroot}%{_bindir}
+
+%clean
+rm -Rf ${RPM_BUILD_ROOT}
+
+#------------------------------------------------------------------------------
+# Files listing.
+#------------------------------------------------------------------------------
+%files
+%doc README COPYING
+%attr(0755,root,root)%{_bindir}/compress_*
+%attr(0755,root,root)%{_bindir}/de*
+%attr(0755,root,root)%{_bindir}/extract_*
+
+#------------------------------------------------------------------------------
+# Change Log
+#------------------------------------------------------------------------------
+%changelog
+* Sat Mar 26 2005 (0.7.1)
+ - first tools package
diff --git a/dists/redhat/scummvm.spec b/dists/redhat/scummvm.spec
index 2d582948f8..4a618aa421 100644
--- a/dists/redhat/scummvm.spec
+++ b/dists/redhat/scummvm.spec
@@ -1,14 +1,13 @@
#------------------------------------------------------------------------------
# scummvm.spec
-# This SPEC file controls the building of custom ScummVM RPM
-# packages.
+# This SPEC file controls the building of ScummVM RPM packages.
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Prologue information
#------------------------------------------------------------------------------
Name : scummvm
-Version : 0.7.0
+Version : 0.8.0
Release : 1
Summary : Graphic adventure game interpreter
Group : Interpreters
@@ -25,6 +24,8 @@ BuildRequires: desktop-file-utils
BuildRequires: libogg-devel
BuildRequires: libvorbis-devel
BuildRequires: flac-devel
+BuildRequires: zlib-devel
+BuildRequires: nasm
BuildRequires: SDL-devel >= 1.2.2
#------------------------------------------------------------------------------