Skip to content

Instantly share code, notes, and snippets.

View scheunemann's full-sized avatar

Marcus Scheunemann scheunemann

View GitHub Profile
pkgname=smartgit
pkgver=17.1.6
pkgrel=1
pkgdesc="Git client with Hg and SVN support."
arch=("any")
url="http://www.syntevo.com/smartgit"
license=('custom')
depends=("java-runtime>=8" "desktop-file-utils" "sh" "git" "gtk2")
optdepends=("mercurial: hg repositories support")
replaces=(smartgithg)
@scheunemann
scheunemann / Vagrant
Last active February 16, 2017 13:58
A `Vagrantfile` setting up a virtual machine (Ubuntu 12.04), downloads the code of http://playfulmachines.com/.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
config.vm.provider "virtualbox" do |vb|
vb.name = "PlayfulMachines"