mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-20 05:55:34 +08:00
cloog, dsdp, glm, mdds, ppl: removed as obsolete, FS#1848
This commit is contained in:
parent
435b89e869
commit
08300b895b
@ -1,29 +0,0 @@
|
|||||||
|
|
||||||
pkgname=cloog
|
|
||||||
pkgver=0.18.4
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="Library that generates loops for scanning polyhedra"
|
|
||||||
arch=('x86_64')
|
|
||||||
url="http://www.bastoul.net/cloog/"
|
|
||||||
license=('GPL')
|
|
||||||
depends=('isl')
|
|
||||||
source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
|
|
||||||
md5sums=('e531f725244856c92c9bba009ff44faf')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
||||||
./configure --prefix=/usr --with-isl=system
|
|
||||||
make
|
|
||||||
}
|
|
||||||
|
|
||||||
check() {
|
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
||||||
# There are certain race conditions on running the tests, so we restrict
|
|
||||||
# it to one job (one CPU core).
|
|
||||||
make -j1 check
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
||||||
make DESTDIR="${pkgdir}/" install
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,33 +0,0 @@
|
|||||||
# $Id$
|
|
||||||
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
|
|
||||||
# Contributor: Cristóvão D. Sousa <crisjss@gmail.com>
|
|
||||||
pkgname=dsdp
|
|
||||||
pkgver=5.8
|
|
||||||
pkgrel=2
|
|
||||||
pkgdesc="A free open source implementation of an interior-point method for semidefinite programming"
|
|
||||||
arch=('i686' 'x86_64')
|
|
||||||
url="http://www.mcs.anl.gov/hs/software/DSDP"
|
|
||||||
license=('custom')
|
|
||||||
depends=("lapack" "openblas")
|
|
||||||
source=("http://www.mcs.anl.gov/hs/software/${pkgname^^}/${pkgname^^}$pkgver.tar.gz"
|
|
||||||
"make.include.patch")
|
|
||||||
md5sums=('37c15a3c6c3f13e31262f65ac4364b5e'
|
|
||||||
'3c3493ffb8a2884f8b2e90034fa53504')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "$srcdir/${pkgname^^}$pkgver"
|
|
||||||
|
|
||||||
patch make.include < "$srcdir/make.include.patch"
|
|
||||||
|
|
||||||
make DSDPROOT="$srcdir/${pkgname^^}$pkgver" dsdpapi
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "$srcdir/${pkgname^^}$pkgver"
|
|
||||||
|
|
||||||
install -d "$pkgdir"/usr/{lib,include/dsdp}
|
|
||||||
install -Dm755 bin/dsdp5 "$pkgdir"/usr/bin/dsdp5
|
|
||||||
install -Dm644 lib/* "$pkgdir"/usr/lib/
|
|
||||||
install -Dm644 include/*.h "$pkgdir"/usr/include/dsdp/
|
|
||||||
install -Dm644 dsdp-license "$pkgdir"/usr/share/licenses/$pkgname/dsdp-license
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
24c24
|
|
||||||
< OPTFLAGS = -O3
|
|
||||||
---
|
|
||||||
> OPTFLAGS = -O3 -fPIC
|
|
||||||
46,47c46,47
|
|
||||||
< CFLAGS = ${OPTFLAGS} -I. -I${DSDPROOT}/include ${DSDPCFLAGS}
|
|
||||||
< CLINKER = ${CC} ${OPTFLAGS}
|
|
||||||
---
|
|
||||||
> CFLAGS := ${CFLAGS} ${OPTFLAGS} -I. -I${DSDPROOT}/include ${DSDPCFLAGS}
|
|
||||||
> CLINKER = ${CC} ${LDFLAGS} ${OPTFLAGS}
|
|
||||||
58c58
|
|
||||||
< LAPACKBLAS = -llapack -lblas -lg2c -lm
|
|
||||||
---
|
|
||||||
> LAPACKBLAS = -llapack -lopenblas -lgfortran -lm
|
|
24
glm/PKGBUILD
24
glm/PKGBUILD
@ -1,24 +0,0 @@
|
|||||||
#Contrbution from Arch:https://projects.archlinux.org/svntogit/community.git/plain/trunk/PKGBUILD?h=packages/glm
|
|
||||||
pkgname=glm
|
|
||||||
pkgver=0.9.6.3
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="C++ mathematics library for 3D software based on the OpenGL Shading Language (GLSL) specification"
|
|
||||||
arch=('any')
|
|
||||||
license=('MIT')
|
|
||||||
url="http://glm.g-truc.net"
|
|
||||||
source=("http://sourceforge.net/projects/ogl-math/files/glm-$pkgver/glm-$pkgver.zip")
|
|
||||||
md5sums=('acd0b517c37ed25c3f11ee155ee8257e')
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd $pkgname
|
|
||||||
mkdir -p $pkgdir/usr/include/glm
|
|
||||||
mkdir -p $pkgdir/usr/share/doc
|
|
||||||
cp -r glm $pkgdir/usr/include
|
|
||||||
cp -r doc $pkgdir/usr/share/doc/glm
|
|
||||||
rm -f $pkgdir/usr/include/glm/CMakeLists.txt
|
|
||||||
find $pkgdir -type f -exec chmod 644 {} \;
|
|
||||||
find $pkgdir -type d -exec chmod 755 {} \;
|
|
||||||
|
|
||||||
install -Dm644 util/FindGLM.cmake $pkgdir/usr/share/cmake-3.2/Modules/FindGLM.cmake
|
|
||||||
install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
# Contribution from Arch:
|
|
||||||
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
||||||
# Contributor: kusakata <shohei atmark kusakata period com>
|
|
||||||
|
|
||||||
pkgname=mdds
|
|
||||||
pkgver=1.2.2
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="A collection of multi-dimensional data structures and indexing algorithms"
|
|
||||||
arch=('any')
|
|
||||||
url="https://gitlab.com/mdds/mdds"
|
|
||||||
license=('MIT')
|
|
||||||
checkdepends=('boost')
|
|
||||||
# see http://code.google.com/p/multidimalgorithm/wiki/Downloads
|
|
||||||
source=(http://kohei.us/files/mdds/src/${pkgname}-${pkgver}.tar.bz2)
|
|
||||||
sha256sums=('141e730b39110434b02cd844c5ad3442103f7c35f7e9a4d6a9f8af813594cc9d')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd ${pkgname}-${pkgver}
|
|
||||||
./configure --prefix=/usr
|
|
||||||
}
|
|
||||||
|
|
||||||
check() {
|
|
||||||
cd ${pkgname}-${pkgver}
|
|
||||||
make check
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd ${pkgname}-${pkgver}
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
||||||
}
|
|
34
ppl/PKGBUILD
34
ppl/PKGBUILD
@ -1,34 +0,0 @@
|
|||||||
pkgname=ppl
|
|
||||||
pkgver=1.2
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="A modern library for convex polyhedra and other numerical abstractions."
|
|
||||||
arch=('x86_64')
|
|
||||||
url="http://bugseng.com/products/ppl"
|
|
||||||
license=('GPL3')
|
|
||||||
depends=('gmp>=5.1')
|
|
||||||
options=('!docs' '!libtool')
|
|
||||||
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
|
|
||||||
validpgpkeys=('C75DC40A11D7AF889981ED5BC86BA06A517D0F0E' # Linux Kernel Archives Verification Key
|
|
||||||
'058E41DB299DE2DD0AC649CA881457CBB5944392') # Roberto Bagnara
|
|
||||||
md5sums=('2b43339316a3139fd75c7e8ca7ddc201'
|
|
||||||
'SKIP')
|
|
||||||
|
|
||||||
prepare() {
|
|
||||||
cd ${srcdir}/ppl-${pkgver}
|
|
||||||
}
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd $srcdir/ppl-$pkgver
|
|
||||||
./configure --prefix=/usr --enable-interfaces="c,cxx"
|
|
||||||
make
|
|
||||||
}
|
|
||||||
|
|
||||||
check() {
|
|
||||||
cd $srcdir/ppl-$pkgver
|
|
||||||
make check
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd $srcdir/ppl-$pkgver
|
|
||||||
make DESTDIR=$pkgdir install
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user