[arch-commits] Commit in fribidi/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Jan de Groot jgc at archlinux.org
Wed Feb 14 10:51:34 UTC 2018


    Date: Wednesday, February 14, 2018 @ 10:51:33
  Author: jgc
Revision: 316995

archrelease: copy trunk to testing-x86_64

Added:
  fribidi/repos/testing-x86_64/
  fribidi/repos/testing-x86_64/PKGBUILD
    (from rev 316994, fribidi/trunk/PKGBUILD)

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

Copied: fribidi/repos/testing-x86_64/PKGBUILD (from rev 316994, fribidi/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-02-14 10:51:33 UTC (rev 316995)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Nezmer <Nezmer at gmail.com>
+
+pkgname=fribidi
+pkgver=1.0.1+8+gdf7252b
+pkgrel=1
+pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
+arch=('x86_64')
+license=('LGPL')
+url="https://github.com/fribidi/fribidi/"
+makedepends=(git glib2)
+depends=('glibc')
+options=('!makeflags')
+_commit=df7252be3fd94ceae8141a09ee86421fdd8b3b7e  # master
+source=("git+https://github.com/fribidi/fribidi#commit=$_commit")
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/-/+/g' -e 's/^v//'
+}
+
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}/$pkgname"
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "${srcdir}/$pkgname"
+
+  make DESTDIR="${pkgdir}" install
+}
+
+check() {
+  cd "${srcdir}/$pkgname"
+  make check
+}



More information about the arch-commits mailing list