diff options
author | Kevin MacMartin | 2015-11-25 19:07:42 -0500 |
---|---|---|
committer | Kevin MacMartin | 2015-11-25 19:07:42 -0500 |
commit | ef2ddf2d82534170f1bf106f8056137bb1340c46 (patch) | |
tree | 3da206c454f8501ebb350f84d1035ae37c7f8d7f | |
parent | 29cbda4351edddd5aeee291ae3654881f92594bc (diff) | |
download | aur-ef2ddf2d82534170f1bf106f8056137bb1340c46.tar.gz |
Install the docs so the tutorial website works (thanks delsquared)
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = treesheets-git pkgdesc = The ultimate replacement for spreadsheets, mind mappers, outliners, PIMs, text editors and small databases pkgver = r119.10fbc77 - pkgrel = 1 + pkgrel = 2 url = http://treesheets.com/ arch = i686 arch = x86_64 @@ -3,7 +3,7 @@ _pkgname=treesheets pkgname=$_pkgname-git pkgver=r119.10fbc77 -pkgrel=1 +pkgrel=2 pkgdesc='The ultimate replacement for spreadsheets, mind mappers, outliners, PIMs, text editors and small databases' url='http://treesheets.com/' license=('zlib') @@ -40,8 +40,9 @@ package() { cd $_pkgname install -Dm644 ZLIB_LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm755 TS/$_pkgname "$pkgdir/usr/bin/$_pkgname" - install -d "$pkgdir/usr/share/$_pkgname" + install -dm755 "$pkgdir/usr/share/$_pkgname" cp -R TS/examples "$pkgdir/usr/share/$_pkgname/examples" cp -R TS/images "$pkgdir/usr/share/$_pkgname/images" + cp -R TS/docs "$pkgdir/usr/share/$_pkgname/docs" } |