diff options
author | Priyank Chaudhary | 2015-09-18 20:00:17 +0530 |
---|---|---|
committer | Priyank Chaudhary | 2015-09-18 20:00:17 +0530 |
commit | ef4c3ea0648b7f4cde8e0d5d36caabbfc0042945 (patch) | |
tree | 89ba225051d3b16fc93ab6e1add2392c5d311fbf | |
download | aur-ef4c3ea0648b7f4cde8e0d5d36caabbfc0042945.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..6d17f10da62 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = fortune-mod-dhammapada + pkgdesc = A collection of Fortune cookies from the Buddha's Dhammapada + pkgver = 1 + pkgrel = 1 + url = https://github.com/pronoid/fortune-mod-dhammapada + arch = any + license = MIT + makedepends = git + depends = fortune-mod + +pkgname = fortune-mod-dhammapada + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..248592d6f73 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Priyank Chaudhary <priyank21 AT outlook DOT com> +pkgname=fortune-mod-dhammapada +pkgver=1 +pkgrel=1 +pkgdesc="A collection of Fortune cookies from the Buddha's Dhammapada" +arch=(any) +url="https://github.com/pronoid/fortune-mod-dhammapada" +license=('MIT') +depends=(fortune-mod) +makedepends=(git) + +build () { + git clone https://github.com/pronoid/fortune-mod-dhammapada.git +} + +package() { + cd "$srcdir/fortune-mod-dhammapada" + install -D -m644 dhammapada ${pkgdir}/usr/share/fortune/dhammapada + install -D -m644 dhammapada.dat ${pkgdir}/usr/share/fortune/dhammapada.dat +}
\ No newline at end of file |