summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaetan Bisson2015-06-08 11:34:32 -1000
committerGaetan Bisson2015-06-08 11:34:32 -1000
commitbceee451349d6529b35e3b5c7b6100c921adc2d3 (patch)
tree0fc6b6468ac3a958c206dbd21718a9459b8c57c7
downloadaur-bceee451349d6529b35e3b5c7b6100c921adc2d3.tar.gz
initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD22
2 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1cc4720ff784
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = pari-seadata
+ pkgdesc = pari package needed by ellap for large primes
+ pkgver = 20150112
+ pkgrel = 1
+ url = http://pari.math.u-bordeaux.fr/packages.html
+ arch = any
+ license = GPL
+ depends = pari
+ provides = pari-seadata-small
+ conflicts = pari-seadata-small
+ source = http://pari.math.u-bordeaux.fr/pub/pari/packages/seadata.tgz
+ sha1sums = fa3deb36df0ce71a466eb0ff0d4a18d48d44e8b9
+
+pkgname = pari-seadata
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..34a32fded9e6
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+
+_pkgname=seadata
+pkgname=pari-${_pkgname}
+pkgver=20150112
+pkgrel=1
+pkgdesc='pari package needed by ellap for large primes'
+url='http://pari.math.u-bordeaux.fr/packages.html'
+license=('GPL')
+arch=('any')
+depends=('pari')
+source=("http://pari.math.u-bordeaux.fr/pub/pari/packages/${_pkgname}.tgz")
+sha1sums=('fa3deb36df0ce71a466eb0ff0d4a18d48d44e8b9')
+
+conflicts=('pari-seadata-small')
+provides=('pari-seadata-small')
+
+package() {
+ cd "${pkgdir}"
+ install -d usr/share/pari
+ cp -r "${srcdir}/data/${_pkgname}" usr/share/pari
+}