summaryrefslogtreecommitdiff
path: root/community/soup-sharp/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/soup-sharp/PKGBUILD')
-rw-r--r--community/soup-sharp/PKGBUILD24
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
+}