diff options
author | txtsd | 2024-11-08 19:42:42 +0530 |
---|---|---|
committer | txtsd | 2024-11-08 19:42:42 +0530 |
commit | a38a3ea2951c3e7d1847989af2738a511427e74a (patch) | |
tree | 116ee6eed083a2fc28cbb25c76f4aea4bd4035f2 | |
parent | d27d3e214b3eb2019c5bcd0878c7dd39c0df075f (diff) | |
download | aur-a38a3ea2951c3e7d1847989af2738a511427e74a.tar.gz |
upgpkg: otf-sans-forgetica 1.0-3
chore: Housekeeping
Signed-off-by: txtsd <code@ihavea.quest>
-rw-r--r-- | .gitignore | 10 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 9 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore index e3eae767348d..218cc907c9ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -pkg/ -src - -*.tar.zst -*.zip +* +!PKGBUILD +!.SRCINFO +!.gitignore +!.nvchecker.toml @@ -4,16 +4,15 @@ pkgname=otf-sans-forgetica pkgver=1.0 pkgrel=3 -pkgdesc="A font scientifically designed to help you remember your study notes" -url="https://web.archive.org/web/20220601143856/https://sansforgetica.rmit.edu.au/" +pkgdesc='A font scientifically designed to help you remember your study notes' +url='https://web.archive.org/web/20220601143856/https://sansforgetica.rmit.edu.au/' arch=(any) license=('CC-BY-NC-4.0') source=("${url}Common/Zips/Sans%20Forgetica.zip") sha256sums=('972899e17ae7097c95a30661c882c696b6f17d73061da6632b8e976b3bf56f81') package() { - install -d "${pkgdir}/usr/share/fonts/OTF/" - install -m644 "${srcdir}/Sans Forgetica/SansForgetica-Regular.otf" "${pkgdir}/usr/share/fonts/OTF/" - install -Dm644 "${srcdir}/Sans Forgetica/The story of Sans Forgetica.pdf" -t "${pkgdir}/usr/share/doc/${pkgname}" + install -Dm644 'Sans Forgetica/SansForgetica-Regular.otf' -t "${pkgdir}/usr/share/fonts/${pkgname#otf-}" + install -Dm644 'Sans Forgetica/The story of Sans Forgetica.pdf' -t "${pkgdir}/usr/share/doc/${pkgname}" } |