1 # Maintainer: ngukho <ngukho at gmail dot com>
5 pkgdesc="A C port of the implementation of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS) method written by Jorge Nocedal."
7 url="http://www.chokkan.org/software/liblbfgs/"
9 source=("https://github.com/downloads/chokkan/liblbfgs/$pkgname-$pkgver.tar.gz")
10 md5sums=('2a46da6c4014d6b1e8a8790a93edffbb') #generate with 'makepkg -g'
13 cd "$srcdir/$pkgname-$pkgver"
15 ./configure --prefix=/usr
17 make DESTDIR="$pkgdir/" install
19 install -D -m644 COPYING ${pkgdir}/usr/share/licenses/liblbfgs/COPYING
22 # vim:set ts=2 sw=2 et: