mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to fix up makefile for 32-bit builds
|
|
|
|
pkgname=lrs
|
|
pkgver=072
|
|
_pkgver=${pkgver/./}
|
|
pkgrel=1
|
|
pkgdesc='C implementation of the reverse search algorithm for vertex enumeration/convex hull problems'
|
|
arch=(x86_64)
|
|
url='http://cgm.cs.mcgill.ca/~avis/C/lrs.html'
|
|
license=(GPL)
|
|
depends=(gmp)
|
|
source=(http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-$_pkgver.tar.gz
|
|
lrs-system-cflags.patch
|
|
32-bit-support.patch)
|
|
sha256sums=('fc48754a1ded1d8445d40ecfbe3546e4f27d53aaee95dc2c8c0c79fb9cd532f0'
|
|
'617ed06ae2584ef3349a3b1f6ab1a4acd11f18211394458498e1223a65bb0e73'
|
|
'9d8ae8d964c7f2342cdeab105776963aea5d7e20db656b0e87b0290593859dc9')
|
|
|
|
prepare() {
|
|
cd lrslib-$_pkgver
|
|
patch -p1 -i ../lrs-system-cflags.patch # Use system CFLAGS/LDFLAGS
|
|
[[ $CARCH != "aarch64" ]] && patch -p0 -i ../32-bit-support.patch || true
|
|
}
|
|
|
|
build() {
|
|
cd lrslib-$_pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd lrslib-$_pkgver
|
|
make DESTDIR="$pkgdir" prefix=/usr install
|
|
}
|