summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-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"
}