mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:14:46 +08:00
22 lines
537 B
Bash
22 lines
537 B
Bash
|
# $Id$
|
||
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||
|
|
||
|
_dbname=polytopes_db
|
||
|
pkgname=sage-data-$_dbname
|
||
|
pkgver=20120220
|
||
|
pkgrel=1
|
||
|
pkgdesc="Reflexive polytopes database"
|
||
|
arch=('any')
|
||
|
url="http://www.sagemath.org"
|
||
|
license=('GPL')
|
||
|
depends=()
|
||
|
makedepends=()
|
||
|
source=("http://www.sagemath.org/packages/upstream/polytopes_db/$_dbname-$pkgver.tar.bz2")
|
||
|
md5sums=('99bd633f4dfcdfef33c22b0b1b33919a')
|
||
|
|
||
|
package() {
|
||
|
cd $_dbname-$pkgver
|
||
|
mkdir -p "$pkgdir"/usr/share/sage/reflexive_polytopes
|
||
|
mv * "$pkgdir"/usr/share/sage/reflexive_polytopes
|
||
|
}
|