Ubuntu Pastebin

Paste from alan at Fri, 2 Sep 2016 12:28:32 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: minetest
version: "0.4.13"
summary: Multiplayer infinite-world block sandbox
description: |
  Minetest is a minecraft-inspired game written from scratch and licensed
  under the LGPL (version 2.1 or later). It supports both survival and
  creative modes along with multiplayer support, dynamic lighting, and an
  "infinite" map generator.
confinement: strict

apps:
  minetest:
    command: minetest
    plugs: [x11, network, network-bind, unity7, opengl, home, pulseaudio]

parts:
  launcher:
    plugin: dump
    source: .
    organize:
      minetest: minetest
  minetestgame:
    source: https://github.com/minetest/minetest_game.git
    plugin: dump
    organize:
      '*': 'games/minetest_game/'
  minetest:
    source: https://github.com/minetest/minetest.git
    plugin: cmake
    configflags: [-DRUN_IN_PLACE=TRUE]
    stage:
      - -minetest.conf.example
    build-packages:
      - cmake
      - gcc
      - g++
      - gettext
      - imagemagick
      - libbz2-dev
      - libcurl4-gnutls-dev
      - libfreetype6-dev
      - libglu1-mesa-dev
      - libirrlicht-dev
      - libjpeg-dev
      - libjsoncpp-dev
      - libleveldb-dev
      - libluajit-5.1-dev
      - libogg-dev
      - libopenal-dev
      - libpng12-dev
      - libpulse-dev
      - libsqlite3-dev
      - libvorbis-dev
      - libx11-dev
      - zlib1g-dev
    stage-packages:
      - libgl1-mesa-dri
      - libpulse0
Download as text