summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Whitt2017-05-03 15:49:57 -0400
committerAlex Whitt2017-05-03 15:49:57 -0400
commit1b8f577367aa076bf90039f841a66f3396f5b8be (patch)
tree74c9f8b27b8059b6969b4b7de57ef9a7760409a0
parent90db0ca8ff214f99210c7826385083ffedac706f (diff)
downloadaur-1b8f577367aa076bf90039f841a66f3396f5b8be.tar.gz
Adding fonts as dependencies
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD6
2 files changed, 10 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ec033f90e0e7..813993b166dd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,21 @@
# Generated by mksrcinfo v8
-# Tue Apr 25 20:08:35 UTC 2017
+# Wed May 3 19:48:01 UTC 2017
pkgbase = emacs-all-the-icons
pkgdesc = A utility package to collect various Icon Fonts and propertize them within Emacs.
pkgver = 2.5.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/domtronn/all-the-icons.el
arch = any
license = MIT
makedepends = git
depends = emacs
depends = emacs-font-lock-plus
+ depends = ttf-font-awesome
+ depends = ttf-material-design-icons
+ depends = ttf-weather-icons
+ depends = ttf-octicons
+ depends = ttf-atom-file-icons
+ depends = ttf-all-the-icons
provides = emacs-all-the-icons
source = https://github.com/domtronn/all-the-icons.el/archive/2.5.0.tar.gz
sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 9c545fd6eeb3..f2a9b38b8f60 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
pkgname=emacs-all-the-icons
pkgver=2.5.0
-pkgrel=1
+pkgrel=2
pkgdesc="A utility package to collect various Icon Fonts and propertize them within Emacs."
url="https://github.com/domtronn/all-the-icons.el"
arch=('any')
license=('MIT')
-depends=('emacs' 'emacs-font-lock-plus')
+depends=('emacs' 'emacs-font-lock-plus' 'ttf-font-awesome' 'ttf-material-design-icons' 'ttf-weather-icons' 'ttf-octicons' 'ttf-atom-file-icons' 'ttf-all-the-icons')
makedepends=('git')
provides=('emacs-all-the-icons')
source=("https://github.com/domtronn/all-the-icons.el/archive/${pkgver}.tar.gz")
@@ -25,10 +25,8 @@ package() {
install -m644 *.el{c,} "${pkgdir}/usr/share/emacs/site-lisp/all-the-icons/"
mkdir ${pkgdir}/usr/share/emacs/site-lisp/all-the-icons/data/
- mkdir ${pkgdir}/usr/share/emacs/site-lisp/all-the-icons/fonts/
install -D -m644 data/* "${pkgdir}/usr/share/emacs/site-lisp/all-the-icons/data/"
- install -D -m644 fonts/* "${pkgdir}/usr/share/emacs/site-lisp/all-the-icons/fonts/"
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}