mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
20 lines
712 B
Bash
20 lines
712 B
Bash
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
|
pkgname=symphony
|
|
pkgver=5.6.19
|
|
pkgrel=1
|
|
pkgdesc="an open-source solver, callable library, and development framework for mixed-integer linear programs (MILPs) written in C with a number of unique features"
|
|
arch=('x86_64')
|
|
url="https://github.com/coin-or/SYMPHONY"
|
|
license=('EPL')
|
|
depends=()
|
|
makedepends=()
|
|
optdepends=()
|
|
source=("https://github.com/coin-or/SYMPHONY/releases/download/releases%2F${pkgver}/SYMPHONY-releases.${pkgver}-x86_64-ubuntu18-gcc750-static.tar.gz")
|
|
sha256sums=('f1a5ad4fda16dcbc644eb85af1165be218f1535b61af5a01d9a896e7ce379355')
|
|
package() {
|
|
mkdir -p ${pkgdir}/usr
|
|
cd "$srcdir"
|
|
rm LICENSE
|
|
rm *.md
|
|
cp -r * ${pkgdir}/usr
|
|
}
|