summaryrefslogtreecommitdiff
path: root/coin-or-osi/Pkgfile
blob: 06e92ecea9ce793acd93434f4e1ae66080c27258 (plain)
    1 # Description: COIN-OR Open Solver Interface
    2 # URL: https://projects.coin-or.org/Osi
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: coin-or-coinutils
    5 
    6 name=coin-or-osi
    7 version=0.108.6
    8 release=1
    9 source=(https://www.coin-or.org/download/source/Osi/Osi-${version}.tgz)
   10 
   11 build() {
   12   cd Osi-$version
   13   COIN_SKIP_PROJECTS="Sample" \
   14   ./configure --prefix=/usr \
   15     --enable-dependency-linking \
   16     --with-coinutils-lib="$(pkg-config --libs coinutils)" \
   17     --with-coinutils-incdir="/usr/include/coin/"
   18   make
   19   PKG_CONFIG_LIBDIR="${PKG}/usr/lib/pkgconfig/" \
   20   make DESTDIR="$PKG" install
   21   rm -fr $PKG/usr/share/coin/doc
   22 }

Generated by cgit