summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: edd895572c399af1cefa67f304ea37e1e5f4cd9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=cweather
pkgbase=cweather
pkgver=0.2.0
pkgrel=1
pkgdesc="Simple weather utility written in C - read the source code for more info"
arch=('i686' 'x86_64')
license=('GPL')
depends=('cjson' 'curl')
optdepends=('nerd-fonts: for the expanded icon set')
provides=('cweather')
source=("git+https://github.com/raptor8134/cweather.git")
md5sums=('SKIP')

build() {
	cd ${srcdir}/${pkgbase}
	make
}

package() {
	mkdir -p "${pkgdir}/usr/bin"
	cd ${srcdir}/${pkgbase}
	make DESTDIR="${pkgdir}/" install
}