mirror of
https://github.com/archlinux/aur.git
synced 2026-03-01 22:15:10 +01:00
commit
64ea4f319d
3 changed files with 59 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = cli-google-git
|
||||
pkgdesc = Google Search from command line
|
||||
pkgver = 0.2.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/henux/cli-google.git
|
||||
arch = any
|
||||
license = GPL3
|
||||
makedepends = git
|
||||
depends = python
|
||||
provides = cli-google
|
||||
conflicts = cli-google
|
||||
source = git://github.com/Narrat/cli-google.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = cli-google-git
|
||||
|
||||
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
*/src
|
||||
*/pkg
|
||||
*.gz
|
||||
*.xz
|
||||
*.bz2
|
||||
*.zip
|
||||
*.part
|
||||
*.sig
|
||||
*.sign
|
||||
*.txt
|
||||
*.log
|
||||
*.scm
|
||||
*/cli-google
|
||||
*/*.pkg
|
||||
*/*.asc
|
||||
28
PKGBUILD
Normal file
28
PKGBUILD
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Maintainer: Lex Black <autumn-wind at web dot de>
|
||||
# Contributor: Henri Häkkinen <henuxd@gmail.com>
|
||||
|
||||
_pkgname=cli-google
|
||||
pkgname=cli-google-git
|
||||
pkgver=0.2.0
|
||||
pkgrel=1
|
||||
pkgdesc="Google Search from command line"
|
||||
arch=('any')
|
||||
url='https://github.com/henux/cli-google.git'
|
||||
license=('GPL3')
|
||||
depends=('python')
|
||||
makedepends=('git')
|
||||
provides=('cli-google')
|
||||
conflicts=('cli-google')
|
||||
source=('git://github.com/Narrat/cli-google.git')
|
||||
md5sums=('SKIP')
|
||||
|
||||
|
||||
pkgver() {
|
||||
cd $_pkgname
|
||||
git describe | sed 's/^v//;s/-/./g'
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
make DESTDIR=$pkgdir PREFIX="/usr" install
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue