Author: agaran Date: Fri Aug 29 23:03:59 2008 GMT Module: SPECS Tag: HEAD ---- Log message: - initial, works for me (mostly), but probably is still broken (especially rights on /var/games/stone_soup)
---- Files affected: SPECS: stone_soup.spec (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: SPECS/stone_soup.spec diff -u /dev/null SPECS/stone_soup.spec:1.1 --- /dev/null Sat Aug 30 01:03:59 2008 +++ SPECS/stone_soup.spec Sat Aug 30 01:03:53 2008 @@ -0,0 +1,113 @@ +# $Revision$, $Date$ +# BAD, UGLY, works for me not sure if for anyone else +# +# Conditional build: +%bcond_with tests # build with tests +%bcond_without tests # build without tests +# +Summary: stone soup :: crawl clone +Name: stone_soup +Version: 0.4.1 +Release: 0.1 +License: Nethack Like +Group: Applications +Source0: http://dl.sourceforge.net/crawl-ref/%{name}-%{version}-src.tbz2 +# Source0-md5: 9df29d976edd96018fdb7eb0a70a7ba8 +Patch0: %{name}-systemlua.patch +Patch1: %{name}-makefile.patch +#Source1: - +# Source1-md5: - +#Patch0: %{name}-DESTDIR.patch +URL: - +#BuildRequires: - +#BuildRequires: autoconf +#BuildRequires: automake +#BuildRequires: intltool +BuildRequires: bison +BuildRequires: flex +BuildRequires: byacc +#Requires(postun): - +#Requires(pre,post): - +#Requires(preun): - +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +Dungeon Crawl Clone + + +%prep +%setup -q -n %{name}-%{version}-src +%patch0 -p1 +%patch1 -p1 + +# remove CVS control files +#find -name CVS -print0 | xargs -0 rm -rf + +# you'll need this if you cp -a complete dir in source +# cleanup backups after patching +find . '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f + +%build +# if ac/am/* rebuilding is necessary, do it in this order and add +# appropriate BuildRequires +#%%{__intltoolize} +#%%{__gettextize} +#%%{__libtoolize} +#%%{__aclocal} +#%%{__autoconf} +#%%{__autoheader} +#%%{__automake} +# if not running libtool or automake, but config.sub is too old: +#cp -f /usr/share/automake/config.sub . +#%%configure +%{__make} -C source + +#%{__make} \ +# CFLAGS="%{rpmcflags}" \ +# LDFLAGS="%{rpmldflags}" + +%install +rm -rf $RPM_BUILD_ROOT +# create directories if necessary +#install -d $RPM_BUILD_ROOT +#install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version} + +%{__make} -C source install \ + DESTDIR=$RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT%{_localstatedir}/games/stone_soup +install -d $RPM_BUILD_ROOT%{_datadir}/stone_soup{,/db,/des} + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(644,root,root,755) +#%doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO +%attr(2755,root,games) %{_bindir}/stone_soup +%attr(3777,root,games) %dir %{_datadir}/stone_soup +%attr(2775,root,games) %dir %{_datadir}/stone_soup/db +%attr(2775,root,games) %dir %{_datadir}/stone_soup/des +%attr(775,root,games) %dir %{_datadir}/stone_soup/dat +%attr(775,root,games) %dir %{_datadir}/stone_soup/dat/clua +%attr(775,root,games) %dir %{_datadir}/stone_soup/dat/lua +%attr(775,root,games) %dir %{_datadir}/stone_soup/dat/descript +%attr(775,root,games) %dir %{_datadir}/stone_soup/dat/database +%attr(775,root,games) %dir %{_datadir}/stone_soup/settings +%attr(3777,root,games) %dir %{_localstatedir}/games/stone_soup +%attr(644,root,games) %{_datadir}/stone_soup/dat/*des +%attr(644,root,games) %{_datadir}/stone_soup/dat/clua/*lua +%attr(644,root,games) %{_datadir}/stone_soup/dat/lua/*lua +%attr(644,root,games) %{_datadir}/stone_soup/dat/descript/*.txt +%attr(644,root,games) %{_datadir}/stone_soup/dat/database/*.txt +%attr(644,root,games) %{_datadir}/stone_soup/settings/*.txt + + +%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) +%changelog +* %{date} PLD Team <[EMAIL PROTECTED]> +All persons listed below can be reached at <cvs_login>@pld-linux.org + +$Log$ +Revision 1.1 2008/08/29 23:03:53 agaran +- initial, works for me (mostly), but probably is still broken (especially rights on /var/games/stone_soup) + ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
