Skip to content

Instantly share code, notes, and snippets.

@InsanePrawn
Created September 5, 2016 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InsanePrawn/9170c8712286a1977929535bf7d750a8 to your computer and use it in GitHub Desktop.
Save InsanePrawn/9170c8712286a1977929535bf7d750a8 to your computer and use it in GitHub Desktop.
gnome-i3-git PKGBUILD
# Maintainer: Patrick Niklaus <patrick.niklaus@student.kit.edu>
# Git Version PKGBUILD by Prawn <insane.prawny@gmail.com>
pkgname=i3-gnome-git
pkgver=5.1.r0.gae82c12
pkgrel=1
pkgdesc="Starts i3 inside a gnome session."
arch=('any')
url="https://github.com/TheMarex/i3-gnome"
license=('MIT')
groups=()
depends=()
makedepends=()
optdepends=()
provides=('gnome-i3')
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(git+https://github.com/TheMarex/i3-gnome.git)
noextract=()
md5sums=('SKIP')
build() {
cd "$pkgname"
make
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" install
}
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment