Created
September 5, 2016 13:32
-
-
Save InsanePrawn/9170c8712286a1977929535bf7d750a8 to your computer and use it in GitHub Desktop.
gnome-i3-git PKGBUILD
This file contains hidden or 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: Patrick Niklaus <[email protected]> | |
# Git Version PKGBUILD by Prawn <[email protected]> | |
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