diff options
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..4195b3a1f41e --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = otf-pomicons + pkgdesc = Font with symbols to talk about the "Pomodoro Technique" + pkgver = 1 + pkgrel = 1 + url = https://github.com/gabrielelana/pomicons + arch = any + license = CCPL + depends = fontconfig + source = https://github.com/gabrielelana/pomicons/raw/master/fonts/Pomicons.otf + sha256sums = b215bcfb88927419b81c8e86ae8948ad83a9ca34870d71566962032e5afd75a9 + b2sums = f2252b17bb7b36c59129d2dba175a587099db0558f5ebc072cec6541be8a188ae0725d2ef9f3e07d55afcf99b082e94495d6a0974f39b3a0da3bae783368b7b6 + +pkgname = otf-pomicons + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1fc3181f3029 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: KokaKiwi <kokakiwi+aur at kokakiwi dot net> + +pkgname=otf-pomicons +pkgver=1 +pkgrel=1 +pkgdesc='Font with symbols to talk about the "Pomodoro Technique"' +arch=('any') +url='https://github.com/gabrielelana/pomicons' +license=('CCPL') +depends=('fontconfig') +source=('https://github.com/gabrielelana/pomicons/raw/master/fonts/Pomicons.otf') +sha256sums=('b215bcfb88927419b81c8e86ae8948ad83a9ca34870d71566962032e5afd75a9') +b2sums=('f2252b17bb7b36c59129d2dba175a587099db0558f5ebc072cec6541be8a188ae0725d2ef9f3e07d55afcf99b082e94495d6a0974f39b3a0da3bae783368b7b6') + +package() { + install -Dm0644 -t "${pkgdir}/usr/share/fonts/OTF" Pomicons.otf +} |