summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorDenis Demidov2015-07-13 22:03:05 +0300
committerDenis Demidov2015-07-13 22:03:05 +0300
commit1567d816689d07332445c5545e16dc815d419ea1 (patch)
treee7ba4b86d5e106a6bf69497e64803fa837e51f10 /PKGBUILD
parentbb8f2c5b4955b455591ed95d0c849a354cfe01c7 (diff)
downloadaur-1567d816689d07332445c5545e16dc815d419ea1.tar.gz
Fix source dirs structure
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 74dde3a5d880..ae7bbb02e8bd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
# Maintainer: Denis Demidov <dennis.demidov@gmail.com>
pkgname=amgcl-git
-pkgver=20150609
-pkgrel=2
+pkgver=20150713
+pkgrel=3
pkgdesc='C++ library for solving large sparse linear systems with algebraic multigrid method'
arch=('i686' 'x86_64')
url='http://github.com/ddemidov/amgcl'
@@ -26,7 +26,7 @@ package() {
cd $_gitname
install -d "$pkgdir/usr/include/amgcl"
- find amgcl -type f -exec install -Dm644 '{}' "$pkgdir/usr/include/amgcl/" ';' || return 1
+ find amgcl -type f -exec install -Dm644 '{}' "$pkgdir/usr/include/{}" ';' || return 1
install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$_gitname/LICENSE.md" || return 1
install -Dm644 README.md "$pkgdir/usr/share/doc/$_gitname/README.md" || return 1
}