package created using the webbuild interface [release 1510.01-1mamba;Fri Dec 11 2015]

This commit is contained in:
Ercole 'ercolinux' Carpanetto 2024-01-05 19:08:30 +01:00
parent db709afcf9
commit cf3a912556
2 changed files with 68 additions and 0 deletions

View File

@ -1,2 +1,10 @@
# voxelands # voxelands
VoxelanVoxelands is a sandbox construction game based on Minetest, which was inspired by earlier "voxel world" games such as Infiniminer.
Gameplay puts players in a fully destructible 3D game world where they can place and dig numerous types of blocks, items and creatures using a variety of tools.
Inside the game world players can build structures, artworks and anything else their creativity can think of on multiplayer servers
and singleplayer worlds across multiple game modes.ds is a sandbox construction game based on Minetest, which was inspired by earlier "voxel world" games such as Infiniminer. Gameplay
puts players in a fully destructible 3D game world where they can place and dig numerous types of blocks, items and creatures using a variety
of tools. Inside the game world players can build structures, artworks and anything else their creativity can think of on multiplayer servers and singleplayer worlds across multiple game modes.

60
voxelands.spec Normal file
View File

@ -0,0 +1,60 @@
Name: voxelands
Version: 1510.01
Release: 1mamba
Summary: a sandbox construction game
Group: Graphical Desktop/Applications/Games
Vendor: openmamba
Distribution: openmamba
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
URL: http://www.voxelands.com/
Source: http://www.voxelands.com/downloads/voxelands-%{version}-src.tar.bz2
License: GPL3
## AUTOBUILDREQ-BEGIN
## note: run 'autospec -u -a6 voxelands' to get the list of build requirements.
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRequires: libirrlicht-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
VoxelanVoxelands is a sandbox construction game based on Minetest, which was inspired by earlier "voxel world" games such as Infiniminer.
Gameplay puts players in a fully destructible 3D game world where they can place and dig numerous types of blocks, items and creatures using a variety of tools.
Inside the game world players can build structures, artworks and anything else their creativity can think of on multiplayer servers
and singleplayer worlds across multiple game modes.ds is a sandbox construction game based on Minetest, which was inspired by earlier "voxel world" games such as Infiniminer. Gameplay
puts players in a fully destructible 3D game world where they can place and dig numerous types of blocks, items and creatures using a variety
of tools. Inside the game world players can build structures, artworks and anything else their creativity can think of on multiplayer servers and singleplayer worlds across multiple game modes.
%debug_package
%prep
%setup -q
%build
%cmake -d build \
-DBUILD_SHARED_LIBS=OFF \
-DRUN_IN_PLACE=0
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
## note: this list is just an example; modify as required
# %{_bindir}/%{name}
# %{_datadir}/%{name}
# %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
# %{_mandir}/man?/*
## note: eventually add the remaining documents (if any)
# %doc README.txt
%changelog
* Fri Dec 11 2015 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 1510.01-1mamba
- package created using the webbuild interface