-
-
Save aruneko/be06f3a49bd04a29f106c38edb882f34 to your computer and use it in GitHub Desktop.
[For Archilinux] 手っ取り早く Cica v3 を使いたかったので AUR の PKGBUILD を以下のように編集して突っ込んだ。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: yuhr <sdn.pate(at)gmail.com> | |
pkgname=ttf-cica | |
pkgver=3.0.0 | |
pkgrel=1 | |
pkgdesc="Composite font with Ubuntu Mono and Rounded Mgen+." | |
url="https://github.com/miiton/Cica" | |
license=('custom') | |
arch=('any') | |
depends=('fontconfig' 'xorg-font-utils') | |
install=$pkgname.install | |
source=(https://github.com/miiton/Cica/releases/download/v${pkgver}/Cica_v${pkgver}.zip) | |
md5sums=('a289aaefc87eb5f66a8727d86cdc79bb') | |
package() { | |
install -dm755 "${pkgdir}"/usr/share/fonts/TTF | |
install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF/ | |
install -d "${pkgdir}/usr/share/licenses/${pkgname}/" | |
install -Dm644 *.txt "${pkgdir}/usr/share/licenses/${pkgname}/" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment