mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 05:14:48 +08:00
22 lines
515 B
Bash
22 lines
515 B
Bash
# $Id$
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
_dbname=graphs
|
|
pkgname=sage-data-$_dbname
|
|
pkgver=20130920
|
|
pkgrel=1
|
|
pkgdesc="A database of graphs for Sage"
|
|
arch=('any')
|
|
url="http://www.sagemath.org"
|
|
license=('GPL')
|
|
depends=()
|
|
makedepends=()
|
|
source=("http://www.sagemath.org/packages/upstream/graphs/$_dbname-$pkgver.tar.bz2")
|
|
md5sums=('2621b6cfd61797ab0be179653d7bcf3e')
|
|
|
|
package() {
|
|
cd $_dbname-$pkgver
|
|
mkdir -p "$pkgdir"/usr/share/sage/$_dbname
|
|
install -m644 * "$pkgdir"/usr/share/sage/$_dbname
|
|
}
|