[arch-commits] Commit in libixion/repos (staging-x86_64 staging-x86_64/PKGBUILD)

Felix Yan felixonmars at archlinux.org
Tue Jun 8 16:34:52 UTC 2021


    Date: Tuesday, June 8, 2021 @ 16:34:51
  Author: felixonmars
Revision: 417468

archrelease: copy trunk to staging-x86_64

Added:
  libixion/repos/staging-x86_64/
  libixion/repos/staging-x86_64/PKGBUILD
    (from rev 417467, libixion/trunk/PKGBUILD)

----------+
 PKGBUILD |   35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

Copied: libixion/repos/staging-x86_64/PKGBUILD (from rev 417467, libixion/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2021-06-08 16:34:51 UTC (rev 417468)
@@ -0,0 +1,35 @@
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Contributor: kusakata <shohei atmark kusakata period com>
+
+pkgname=libixion
+pkgver=0.16.1
+pkgrel=6
+pkgdesc="A general purpose formula parser & interpreter"
+arch=('x86_64')
+url="https://gitlab.com/ixion/ixion/blob/master/README.md"
+license=('custom')
+depends=('boost-libs' 'python')
+makedepends=('boost' 'mdds' 'spdlog')
+source=("https://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz")
+# https://gitlab.com/ixion/ixion/-/releases
+sha256sums=('426c643b3c346d546027c0226619abb2e59848e94470b9b5aa6365e26125089f')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+    --disable-static
+#  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # doesn't fix it
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # LICENSE file is missing in tarball
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list