mirror of
https://github.com/Jguer/yay.git
synced 2025-10-05 00:08:30 -04:00
36 lines
614 B
Plaintext
36 lines
614 B
Plaintext
pkgname=shaman-git
|
||
pkgver=2.0.0.α.r29.g18fc492
|
||
pkgrel=1
|
||
|
||
pkgdesc="A small, native C library and utility to fetch weather"
|
||
url="https://github.com/HalosGhost/shaman"
|
||
arch=('i686' 'x86_64')
|
||
license=('GPL2')
|
||
|
||
depends=('curl' 'jansson')
|
||
makedepends=('git' 'tup' 'clang' 'python-sphinx')
|
||
|
||
source=('git+https://github.com/HalosGhost/shaman.git')
|
||
|
||
sha256sums=('SKIP')
|
||
|
||
pkgver () {
|
||
cd shaman
|
||
git describe --long | sed -r 's/([^-]*-g)/r\1/; s/-/./g'
|
||
}
|
||
|
||
build () {
|
||
cd shaman
|
||
make
|
||
}
|
||
|
||
#check () {
|
||
# cd shaman
|
||
# make test
|
||
#}
|
||
|
||
package () {
|
||
cd shaman
|
||
make DESTDIR="$pkgdir" PREFIX='/usr' install
|
||
}
|