This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Jan Alexander Steffens (heftig) <[email protected]> | |
# Contributor: Ionut Biru <[email protected]> | |
pkgname=networkmanager-openvpn | |
pkgver=1.10.0 | |
pkgrel=1 | |
pkgdesc="NetworkManager VPN plugin for OpenVPN" | |
url="https://wiki.gnome.org/Projects/NetworkManager" | |
arch=(x86_64) | |
license=(GPL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: slirp | |
libvdeslirp: | |
@echo "Cloning libvdeslirp" | |
git clone https://github.com/virtualsquare/libvdeslirp | |
libvdeslirp/libvdeslirp.so: libvdeslirp | |
@echo "Building libvdeslirp" | |
@bash -e -c 'pushd libvdeslirp; \ | |
cmake .; \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local DEMO_GENNOTIFY = true | |
assert(minetest.register_mapgen_script) | |
minetest.register_mapgen_script(minetest.get_modpath(minetest.get_current_modname()) .. "/inner.lua") | |
minetest.set_mapgen_setting("mg_name", "singlenode", true) | |
minetest.register_on_respawnplayer(function(player) | |
player:set_pos(vector.new(0, 1.5, 0)) |
OlderNewer