First commit

This commit is contained in:
Yosef
2016-08-26 02:08:04 +00:00
commit 5b3f38cd21
2 changed files with 32 additions and 0 deletions

14
.SRCINFO Normal file
View File

@@ -0,0 +1,14 @@
pkgbase = nginxbeautifier
pkgdesc = Nginx config formatter and beautifier.
pkgver = latest
pkgrel = 1
url = http://nginxbeautifier.com
arch = any
license = Apache-2.0
depends = nodejs
provides = nginxbeautifier
source = nginxbeautifier::git://github.com/vasilevich/nginxbeautifier.git
md5sums = SKIP
pkgname = nginxbeautifier

18
PKGBUILD Normal file
View File

@@ -0,0 +1,18 @@
# Maintainer: Yosef Langer (vasilevich1234 dot gmail dot ...)
pkgname=nginxbeautifier
pkgver=latest
pkgrel=1
pkgdesc='Nginx config formatter and beautifier.'
arch=('any')
url='http://nginxbeautifier.com'
license=('Apache-2.0')
provides=('nginxbeautifier')
depends=('nodejs')
source=($pkgname::"git://github.com/vasilevich/${pkgname}.git")
md5sums=('SKIP')
package() {
cd "$pkgname"
install -D -m 755 nginxbeautifier.js "$pkgdir/usr/bin/nginxbeautifier"
}