Created
January 22, 2015 15:17
-
-
Save joeydumont/59719ab42731b7e1b4de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: Gleidson <[email protected]> | |
# Maintainer: Carl <[email protected]> | |
pkgname=blitz | |
pkgver=0.10 | |
pkgrel=5 | |
pkgdesc="C++ Class library for scientific computing" | |
arch=('i686' 'x86_64') | |
url="http://www.sourceforge.net/projects/blitz/" | |
license=('GPL''custom') | |
depends=('gcc' 'boost-libs') | |
makedepends=('boost') | |
options=('!docs' '!libtool') | |
source=(http://downloads.sourceforge.net/sourceforge/blitz/blitz-$pkgver.tar.gz\ | |
) | |
md5sums=('66268b92bda923735f2e3afc87dcb58a') | |
build() { | |
cd $srcdir/blitz-$pkgver | |
./configure CXX=g++ \ | |
--prefix=/usr \ | |
--enable-serialization \ | |
--enable-shared \ | |
--enable-64bit | |
make | |
} | |
package() { | |
cd $srcdir/$pkgname-$pkgver | |
# Install license | |
install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE | |
make DESTDIR=$pkgdir install | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment