[arch-commits] Commit in lcalc/repos (2 files)
Antonio Rojas
arojas at gemini.archlinux.org
Tue Jul 13 18:25:04 UTC 2021
Date: Tuesday, July 13, 2021 @ 18:25:03
Author: arojas
Revision: 976865
archrelease: copy trunk to community-staging-x86_64
Added:
lcalc/repos/community-staging-x86_64/
lcalc/repos/community-staging-x86_64/PKGBUILD
(from rev 976864, lcalc/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: lcalc/repos/community-staging-x86_64/PKGBUILD (from rev 976864, lcalc/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2021-07-13 18:25:03 UTC (rev 976865)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=lcalc
+pkgver=2.0.3
+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=('4e2fe0df610f0d32499393495d43f3ba03f465d322f8f41b97904b7d0cc87f53')
+
+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