Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c105aa7e82 | ||
|
|
ba29d6ebde | ||
|
|
d4ef2d4a7d | ||
|
|
98f598ac10 | ||
|
|
821f93cd00 | ||
|
|
ad84168747 | ||
|
|
c0d801d6f9 | ||
|
|
fc96bf1282 |
4 changed files with 63 additions and 21 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: alienarena-data
|
||||
# $Id$
|
||||
NAME := alienarena-data
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
62
alienarena-data.spec
Normal file
62
alienarena-data.spec
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
Name: alienarena-data
|
||||
Summary: Data files for Alien Arena 2008
|
||||
Version: 20081016
|
||||
Release: 1%{?dist}
|
||||
License: Redistributable, no modification permitted
|
||||
Group: Amusements/Games
|
||||
URL: http://icculus.org/alienarena/
|
||||
# We need to get this from SVN
|
||||
# mkdir alienarena-data-20081016 && cd alienarena-data-20081016
|
||||
# svn co svn://svn.icculus.org/alienarena/tags/7.20/arena
|
||||
# svn co svn://svn.icculus.org/alienarena/tags/7.20/botinfo
|
||||
# svn co svn://svn.icculus.org/alienarena/tags/7.20/data1
|
||||
# cd ../
|
||||
# tar -cvjf alienarena-data-20081016.tar.bz2 alienarena-data-20081016
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
|
||||
%description
|
||||
Data files (audio, maps, etc) for Alien Arena 2008.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
find -name "\.svn" -type d -print0 | xargs -0 rm -rf
|
||||
rm -f {arena,data1}/game.so
|
||||
|
||||
|
||||
%build
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
%{__mkdir_p} %{buildroot}/%{_datadir}/alienarena/
|
||||
cp -ap arena botinfo data1 %{buildroot}/%{_datadir}/alienarena/
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_datadir}/alienarena/
|
||||
|
||||
%changelog
|
||||
* Mon Oct 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> 20081016-1
|
||||
- update to 20081016
|
||||
- sync up with Paul Bredbury's spec
|
||||
|
||||
* Thu Jul 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 20080603-2
|
||||
- get rid of prebuilt so file
|
||||
|
||||
* Wed Jul 2 2008 Tom "spot" Callaway <tcallawa@redhat.com> 20080603-1
|
||||
- update to 2008 data
|
||||
|
||||
* Tue Nov 27 2007 Tom "spot" Callaway <tcallawa@redhat.com> 20071011-2
|
||||
- cleanups, move icon into hicolor tree
|
||||
|
||||
* Thu Nov 1 2007 Tom "spot" Callaway <tcallawa@redhat.com> 20071011-1
|
||||
- Initial package for Fedora
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
300e44b08a54f72587f4144008a61868 alienarena-data-20081016.tar.bz2
|
||||
Reference in a new issue