summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 32264e866bdaae02e7c8a5c80c8e38d59372a234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Anixne <mobilecoderdev@gmail.com>
pkgname='anifetch'
pkgver=1.0.1
pkgrel=3
pkgdesc="Simple OS information fetcher"
arch=('x86_64')
url="https://github.com/anixne/anifetch"
license=('GPL')
depends=('glibc' 'glib2')
makedepends=('git')
source=("$pkgname-$pkgver::git+https://github.com/anixne/anifetch.git")
md5sums=('SKIP')

build() {
	cd "$srcdir/$pkgname-$pkgver"
	make
}

package() {
	cd "$pkgname-$pkgver"
	install -Dm755 bin/main "$pkgdir/usr/bin/anifetch"
}