summaryrefslogtreecommitdiff
path: root/extra/ucommon
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-05-18 00:02:20 +0000
committerroot <root@rshg054.dnsready.net>2012-05-18 00:02:20 +0000
commit2f104ecf78d6a93ba8d67273b76364cb1365a6cf (patch)
treec93787a9c08d8cb41a424644dc09fc529dfd63f1 /extra/ucommon
parentf675762300c4ee2717e029975bb3f94312245276 (diff)
Fri May 18 00:02:20 UTC 2012
Diffstat (limited to 'extra/ucommon')
-rw-r--r--extra/ucommon/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/ucommon/PKGBUILD b/extra/ucommon/PKGBUILD
new file mode 100644
index 000000000..e9e78bdc0
--- /dev/null
+++ b/extra/ucommon/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 159166 2012-05-16 20:55:54Z andrea $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=ucommon
+pkgver=5.2.2
+pkgrel=2
+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=('GPL3' 'LGPL3')
+depends=('openssl')
+options=('!libtool')
+source=("http://ftp.gnu.org/pub/gnu/commoncpp/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('4739fcd9db006432f1b8e2ea226e414a'
+ 'adb2349cffe80678e39a96c6ab5c5a5b')
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}