diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-12 04:09:22 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-12 04:09:22 +0000 |
commit | 00b75e94fdb3eedea225ff1192972db1a46c09bd (patch) | |
tree | 2409ea89ac3c8422c7189bbce9942fe78ef4f2bd /community/soup-sharp/PKGBUILD | |
parent | 96ba30fd7b52ef7318f2499e75970e3e186f84eb (diff) |
Mon May 12 04:02:50 UTC 2014
Diffstat (limited to 'community/soup-sharp/PKGBUILD')
-rw-r--r-- | community/soup-sharp/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/soup-sharp/PKGBUILD b/community/soup-sharp/PKGBUILD new file mode 100644 index 000000000..de653d9be --- /dev/null +++ b/community/soup-sharp/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 110983 2014-05-11 18:59:54Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=soup-sharp +pkgver=2.42.2 +pkgrel=1 +pkgdesc="C# bindings for libsoup" +arch=('i686' 'x86_64') +url="https://github.com/xDarkice/soup-sharp" +license=('LGPL') +depends=('gtk-sharp-3' 'libsoup') +source=(https://github.com/xDarkice/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz) +sha256sums=('a318c69ecf8aa74ab25467e4337288d79b69abd6f68e6739d9f615148b9174f3') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |