Created
October 7, 2015 16:32
-
-
Save shibumi/34ef1b00dd37fd78efd6 to your computer and use it in GitHub Desktop.
PKGBUILD for N1 Mailclient
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: Christian Rebischke <echo Q2hyaXMuUmViaXNjaGtlQGdtYWlsLmNvbQo= | base64 -d> | |
_pkgname='N1' | |
pkgname='n1-git' | |
pkgver=..0edbf51 | |
pkgrel=1 | |
pkgdesc="An extensible mail client built on the modern web" | |
arch=('any') | |
url="https://github.com/mbilker/N1/tree/node-v4" | |
license=('') | |
depends=('nodejs' 'npm') | |
makedepends=('git') | |
optdepends=() | |
provides=('n1') | |
conflicts=('n1') | |
install= | |
source=('git+https://github.com/mbilker/N1.git') | |
noextract=() | |
sha512sums=('SKIP') | |
pkgver() { | |
cd $_pkgname | |
printf "%s.%s.%s" "$(git describe --tags --abbrev=0)" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
build() { | |
cd "$_pkgname" | |
./script/bootstrap | |
} | |
package() { | |
echo | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment