diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/libgit2-glib/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/libgit2-glib/PKGBUILD')
-rw-r--r-- | community/libgit2-glib/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/libgit2-glib/PKGBUILD b/community/libgit2-glib/PKGBUILD new file mode 100644 index 000000000..38f5b31d5 --- /dev/null +++ b/community/libgit2-glib/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 93394 2013-07-02 20:55:40Z eric $ +# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> + +pkgname=libgit2-glib +pkgver=0.0.6 +pkgrel=1 +pkgdesc="GLib wrapper for libgit2" +url="http://live.gnome.org/Libgit2-glib" +license=(LGPL2.1) +arch=(i686 x86_64) +depends=(glib2 libgit2 gobject-introspection) +options=('!libtool') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('bda84b5ab6fbe2922a4cf386b4e6d4401863dec7bea1879e86939d005cd521f6') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static + + # https://bugzilla.gnome.org/show_bug.cgi?id=655517 + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |