mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
34 lines
722 B
Bash
34 lines
722 B
Bash
#
|
|
# Chakra Package
|
|
#
|
|
# -- Drake Justice <djustice@chakra-linux.org>
|
|
#
|
|
|
|
pkgname=eigen
|
|
pkgver=2.0.17
|
|
pkgrel=1
|
|
pkgdesc="A lightweight C++ template library for vector and matrix math, a.k.a. linear algebra"
|
|
arch=('any')
|
|
url='http://eigen.tuxfamily.org/index.php?title=Main_Page'
|
|
license=('GPL' 'LGPL3')
|
|
makedepends=('cmake' 'pkg-config')
|
|
replaces=('eigen')
|
|
provides=('eigen')
|
|
source=("http://bitbucket.org/eigen/eigen/get/${pkgver}.tar.bz2")
|
|
md5sums=('2dfd1e2765d82c306adbfcd6a0eb324b')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake ../eigen-eigen-b23437e61a07 \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|