summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Weidenbaum2015-11-24 11:28:25 -0800
committerAndy Weidenbaum2015-11-24 11:28:25 -0800
commitbee251c23e43657172cf7883ad09468f50b035ed (patch)
tree4b05279a1554ebbcc85d5032466880e7efdf2537
parent68e8b80e489ca4274f91168cba03ceabaf397c47 (diff)
downloadaur-bee251c23e43657172cf7883ad09468f50b035ed.tar.gz
increment pkgrel to 2; install wiki
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 11 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3e62e6d4ed9f..b0a44b80caf1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = voltron-git
pkgdesc = UI for GDB, LLDB and Vivisect's VDB
pkgver = 20151109
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/snare/voltron
arch = any
license = Beerware
@@ -21,7 +21,9 @@ pkgbase = voltron-git
provides = voltron
conflicts = voltron
options = !emptydirs
- source = voltron::git+https://github.com/snare/voltron
+ source = git+https://github.com/snare/voltron
+ source = git+https://github.com/snare/voltron.wiki
+ sha256sums = SKIP
sha256sums = SKIP
pkgname = voltron-git
diff --git a/PKGBUILD b/PKGBUILD
index 212a25ebac40..7bba3097924b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=voltron-git
pkgver=20151109
-pkgrel=1
+pkgrel=2
pkgdesc="UI for GDB, LLDB and Vivisect's VDB"
arch=('any')
depends=('python'
@@ -20,8 +20,9 @@ optdepends=('gdb: GDB'
url="https://github.com/snare/voltron"
license=('Beerware')
options=('!emptydirs')
-source=(${pkgname%-git}::git+https://github.com/snare/voltron)
-sha256sums=('SKIP')
+source=(git+https://github.com/snare/voltron
+ git+https://github.com/snare/voltron.wiki)
+sha256sums=('SKIP' 'SKIP')
provides=('voltron')
conflicts=('voltron')
@@ -40,8 +41,10 @@ build() {
package() {
cd ${pkgname%-git}
- msg2 'Installing docs...'
+ msg2 'Installing documentation...'
install -Dm 644 README.md -t "$pkgdir/usr/share/doc/${pkgname%-git}"
+ cp -dpr --no-preserve=ownership "$srcdir/voltron.wiki" \
+ "$pkgdir/usr/share/doc/${pkgname%-git}/wiki"
msg2 'Installing...'
python setup.py install --root="$pkgdir" --optimize=1