summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 991f9d794ad2aadffb957cd16614df4603167b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pkgname='biblesay'
pkgver=1.1
pkgrel=1
pkgdesc='Print out a random bible verse in a speech bubble coming from an ASCII-Art dove in your terminal.'
arch=('any')
url='https://github.com/theeyeofcthulhu/biblesay'
license=('GPL')
depends=('python')
source=("https://github.com/theeyeofcthulhu/biblesay/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')

package() {
    cd $srcdir/$pkgname-$pkgver
    make PREFIX=/usr DESTDIR="${pkgdir}" install
    install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}