summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9017bfb20f5ac011dae27ce73282b769e6df1f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Marc Schmitt <marc.schmitt@marcerisson.space>
# Contributor: Original maintainer: Mevouc <meven.courouble@vouc.me>
pkgname=epifortune
pkgver=v1.0
pkgrel=1
pkgdesc="A fortune-like program which provide quotes from Epiquote."
arch=(any)
url="https://github.com/Marcerisson/epifortune"
license=('MIT')
source=(git://github.com/Marcerisson/$pkgname/)
md5sums=('SKIP')

build() {
    cd $pkgname/
    make || return 1
}

package() {
	cd $pkgname/
	sudo install -D -m755 ./$pkgname /usr/bin/$pkgname
}

check() {
	cd $pkgname
}