summaryrefslogtreecommitdiff
path: root/ucommon
diff options
context:
space:
mode:
Diffstat (limited to 'ucommon')
-rw-r--r--ucommon/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/ucommon/PKGBUILD b/ucommon/PKGBUILD
new file mode 100644
index 00000000..a893a0ac
--- /dev/null
+++ b/ucommon/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+# Contributor: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=ucommon
+pkgver=6.5.3
+pkgrel=1
+pkgdesc="A light-weight C++ library to facilitate using C++ design patterns"
+arch=('i686' 'x86_64')
+url="http://www.gnutelephony.org/index.php/GNU_uCommon_C++"
+license=('LGPL3')
+depends=('gnutls')
+source=("http://ftp.gnu.org/pub/gnu/commoncpp/$pkgname-$pkgver.tar.gz"{,.sig})
+sha512sums=('7de9c76c711de08735b4d90716f0b0a458d81ebff6e6648ace84a2bcc17248fbee28d42c8ca327044975b5815c277fc34bf4f659589a97aa1b9ee6ad705faa27'
+ 'SKIP')
+validpgpkeys=('5CF995AAD5CC1E4079F76C38B1732A9CB37C87BA')
+
+build() {
+ cd ${pkgname}-${pkgver}
+ ./configure --prefix=/usr --with-sslstack=gnu --enable-socks --enable-stdcpp --enable-atomics --with-pkg-config
+ make
+}
+
+check() {
+ cd ${pkgname}-${pkgver}
+ make check
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}