[arch-commits] Commit in lcalc/repos (2 files)
Antonio Rojas
arojas at archlinux.org
Sun Jul 4 12:42:14 UTC 2021
Date: Sunday, July 4, 2021 @ 12:42:13
Author: arojas
Revision: 972033
archrelease: copy trunk to community-staging-x86_64
Added:
lcalc/repos/community-staging-x86_64/
lcalc/repos/community-staging-x86_64/PKGBUILD
(from rev 972032, lcalc/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: lcalc/repos/community-staging-x86_64/PKGBUILD (from rev 972032, lcalc/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-07-04 12:42:13 UTC (rev 972033)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=lcalc
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='C++ L-function class library and command line interface'
+arch=(x86_64)
+url='https://gitlab.com/sagemath/lcalc'
+license=(GPL2)
+depends=(pari)
+makedepends=(gengetopt)
+source=(https://gitlab.com/sagemath/lcalc/-/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e3076114208a1eb9ffcece72b70fb6883fbccb8c2249dd09fbc5b3e3e3829518')
+
+prepare() {
+ cd $pkgname-$pkgver
+ autoreconf -fi
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr \
+ --with-pari
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list