2010-10-12 03:38:08 +08:00
|
|
|
#
|
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2013-01-22 10:00:51 +08:00
|
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
2010-10-12 03:38:08 +08:00
|
|
|
|
|
|
|
pkgname=glpk
|
2013-01-22 10:00:51 +08:00
|
|
|
pkgver=4.47
|
2010-10-12 03:38:08 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems."
|
2013-01-22 10:00:51 +08:00
|
|
|
arch=('x86_64')
|
2010-10-12 03:38:08 +08:00
|
|
|
url="http://www.gnu.org/software/glpk/glpk.html"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('glibc')
|
|
|
|
options=('!libtool')
|
|
|
|
source=("http://ftp.gnu.org/gnu/glpk/${pkgname}-${pkgver}.tar.gz")
|
2013-01-22 10:00:51 +08:00
|
|
|
md5sums=('8653bf20c1f7db96b9ed369a8598a1ce')
|
2010-10-12 03:38:08 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
|
|
|
|
./configure --prefix=/usr
|
|
|
|
|
2013-01-22 10:00:51 +08:00
|
|
|
make CFLAGS="$CFLAGS -fPIC"
|
2010-10-12 03:38:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package(){
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
2013-01-22 10:00:51 +08:00
|
|
|
|
2010-10-12 03:38:08 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2013-01-22 10:00:51 +08:00
|
|
|
install -Dm644 doc/glpk.pdf "${pkgdir}/usr/share/doc/glpk/glpk.pdf"
|
|
|
|
install -Dm644 doc/gmpl.pdf "${pkgdir}/usr/share/doc/glpk/gmpl.pdf"
|
2010-10-12 03:38:08 +08:00
|
|
|
}
|