24 lines
670 B
Bash
24 lines
670 B
Bash
|
# Template file for 'glpk'
|
||
|
pkgname=glpk
|
||
|
version=4.60
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
configure_args="--with-gmp"
|
||
|
makedepends="gmp-devel"
|
||
|
short_desc="GNU Linear Programming Kit to solve LP, MIP and other problems"
|
||
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
||
|
license="GPL-3"
|
||
|
homepage="http://www.gnu.org/software/glpk/glpk.html"
|
||
|
distfiles="${GNU_SITE}/glpk/${pkgname}-${version}.tar.gz"
|
||
|
checksum=1356620cb0a0d33ac3411dd49d9fd40d53ece73eaec8f6b8d19a77887ff5e297
|
||
|
|
||
|
glpk-devel_package() {
|
||
|
short_desc+=" - development files"
|
||
|
depends="${sourcepkg}>=${version}_${revision}"
|
||
|
pkg_install() {
|
||
|
vmove usr/include
|
||
|
vmove usr/lib/*.a
|
||
|
vmove usr/lib/*.so
|
||
|
}
|
||
|
}
|