[arch-commits] Commit in (4 files)

Andreas Radke andyrtr at archlinux.org
Wed Mar 8 15:30:12 UTC 2017


    Date: Wednesday, March 8, 2017 @ 15:30:11
  Author: andyrtr
Revision: 290143

add pkg required by gssproxy

Added:
  libverto/
  libverto/repos/
  libverto/trunk/
  libverto/trunk/PKGBUILD

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

Added: libverto/trunk/PKGBUILD
===================================================================
--- libverto/trunk/PKGBUILD	                        (rev 0)
+++ libverto/trunk/PKGBUILD	2017-03-08 15:30:11 UTC (rev 290143)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 290139 2017-03-08 14:58:57Z andyrtr $
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: Mantas Mikulėnas <grawity at gmail.com>
+
+pkgname=libverto
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="Main event loop abstraction library"
+arch=(i686 x86_64)
+url="https://fedorahosted.org/libverto/"
+license=(MIT)
+makedepends=(
+# Supported event loops
+  'glib2'
+  'libev'
+  'libevent'
+  'tevent'
+)
+source=("https://fedorahosted.org/releases/l/i/libverto/libverto-$pkgver.tar.gz")
+sha256sums=('17eca6a3855f4884e2e7095e91501767d834b3bf313a6f59a93303f54ac91c9e')
+
+prepare() {
+  cd "$srcdir/libverto-$pkgver"
+  autoreconf -i -f
+}
+
+build() {
+  cd "$srcdir/libverto-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/libverto-$pkgver"
+  make DESTDIR="$pkgdir" install
+  sed -i '
+    /^prefix=/aexec_prefix=${prefix}
+    /^exec_prefix/d
+  ' "$pkgdir/usr/lib/pkgconfig"/*.pc
+  install -Dm0644 "COPYING" "$pkgdir/usr/share/licenses/$pkgname"
+}



More information about the arch-commits mailing list