diff options
author | Bundy01 | 2023-06-01 20:43:18 +0000 |
---|---|---|
committer | Bundy01 | 2023-06-01 20:43:18 +0000 |
commit | 5083a63c5c7b8b395a4182ee437f8b5e1afc64c0 (patch) | |
tree | 44c676ea3dbc54f9ce47bdd172c228e0a41cf1b2 | |
download | aur-5083a63c5c7b8b395a4182ee437f8b5e1afc64c0.tar.gz |
Initial Commit
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 19 |
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..84a07245d44f --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = fortune-mod-wisdom-fr + pkgdesc = Fortune cookies: Wisdom quotes in French + pkgver = 1.1 + pkgrel = 1 + url = https://github.com/Bundy01/fortune-mod-wisdom-fr + arch = any + license = GPL3 + depends = fortune-mod + source = fortune-mod-wisdom-fr-1.1.tar.gz::https://github.com/Bundy01/fortune-mod-wisdom-fr/archive/refs/tags/1.1.tar.gz + sha256sums = cb3a631f51dbe1ce5adc19179548fecdfe5aaf17ecf220750cacec6f831e5ef4 + +pkgname = fortune-mod-wisdom-fr diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..bac3a1efc1ad --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Th30 +pkgname=fortune-mod-wisdom-fr +pkgver=1.1 +pkgrel=1 +pkgdesc="Fortune cookies: Wisdom quotes in French" +arch=('any') +url="https://github.com/Bundy01/fortune-mod-wisdom-fr" +license=('GPL3') +depends=('fortune-mod') +source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz") +sha256sums=('cb3a631f51dbe1ce5adc19179548fecdfe5aaf17ecf220750cacec6f831e5ef4') + +package() +{ + cd "${pkgname}-${pkgver}" + install -Dm644 Asie{,.dat} "${pkgdir}/usr/share/fortune/wisdom-fr" + install -Dm644 Occident{,.dat} "${pkgdir}/usr/share/fortune/wisdom-fr" + install -Dm644 RastAfrica{,.dat} "${pkgdir}/usr/share/fortune/wisdom-fr" +} |