mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial upload with version 0.2.1
This commit is contained in:
commit
86e836abc0
3 changed files with 42 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = trello-cli
|
||||
pkgdesc = Trello CLI tool
|
||||
pkgver = 0.2.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/mheap/trello-cli
|
||||
arch = any
|
||||
license = BSD
|
||||
depends = nodejs
|
||||
depends = npm
|
||||
noextract = trello-cli-0.2.1.tgz
|
||||
source = https://registry.npmjs.org/trello-cli/-/trello-cli-0.2.1.tgz
|
||||
sha512sums = 1b9df9bcc8098966783d044d0dbb95919df70fb4c737112a0551df1492254e42012e65ad15956beb43d008ec32994a2ae2067488773f569519ce0b1543498aba
|
||||
|
||||
pkgname = trello-cli
|
||||
|
||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
pkg/
|
||||
src/
|
||||
trello-cli*
|
||||
24
PKGBUILD
Normal file
24
PKGBUILD
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Maintainer: David Birks <david at tellus dot space>
|
||||
|
||||
pkgname=trello-cli
|
||||
pkgver=0.2.1
|
||||
pkgrel=1
|
||||
pkgdesc="Trello CLI tool"
|
||||
arch=(any)
|
||||
url="https://github.com/mheap/trello-cli"
|
||||
license=(BSD)
|
||||
depends=('nodejs' 'npm')
|
||||
optdepends=()
|
||||
source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
|
||||
noextract=($pkgname-$pkgver.tgz)
|
||||
sha512sums=('1b9df9bcc8098966783d044d0dbb95919df70fb4c737112a0551df1492254e42012e65ad15956beb43d008ec32994a2ae2067488773f569519ce0b1543498aba')
|
||||
|
||||
package() {
|
||||
cd $srcdir
|
||||
local _npmdir="$pkgdir/usr/lib/node_modules/"
|
||||
mkdir -p $_npmdir
|
||||
cd $_npmdir
|
||||
npm install -g --prefix "$pkgdir/usr" $pkgname@$pkgver
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
Loading…
Add table
Reference in a new issue