summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9bd534955436..0cc432a5418c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Mon Aug 15 18:38:47 UTC 2016
+# Mon Feb 13 23:41:04 UTC 2017
pkgbase = dcrdocs
pkgdesc = Documentation for Decred
- pkgver = 20160815
+ pkgver = 20170209
pkgrel = 1
url = https://docs.decred.org
install = dcrdocs.install
diff --git a/PKGBUILD b/PKGBUILD
index af2f51ae2a47..c9cd3defdb81 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Andy Weidenbaum <archbaum@gmail.com>
pkgname=dcrdocs
-pkgver=20160815
+pkgver=20170209
pkgrel=1
pkgdesc="Documentation for Decred"
arch=('any')
@@ -23,15 +23,16 @@ build() {
cd "$srcdir/$pkgname"
msg2 'Building...'
- pyvenv .
+ python -m venv .
bin/pip \
--isolated \
--no-cache-dir \
--disable-pip-version-check \
install \
https://github.com/mkdocs/mkdocs/archive/master.zip \
- python-markdown-math \
- mkdocs-bootswatch
+ fontawesome-markdown \
+ mkdocs-bootswatch \
+ python-markdown-math
bin/mkdocs build --clean
}