diff options
-rw-r--r-- | ucommon/PKGBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/ucommon/PKGBUILD b/ucommon/PKGBUILD deleted file mode 100644 index 58046c6d0..000000000 --- a/ucommon/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# 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=7.0.0 -pkgrel=16 -pkgdesc="A light-weight C++ library to facilitate using C++ design patterns" -arch=('i686' 'pentium4' 'x86_64') -url="http://www.gnutelephony.org/index.php/GNU_uCommon_C++" -license=('LGPL3') -_pinned_dependencies=( - 'gcc-libs=11.2.0' - 'glibc>=2.31' - 'gnutls=3.7.4' -) -depends=("${_pinned_dependencies[@]}") -source=("ftp://ftp.gnu.org/pub/gnu/commoncpp/$pkgname-$pkgver.tar.gz"{,.sig}) -sha512sums=('d32f8603d920eb98b5d4bc75224a7a8bb8bf2001a8dd3152626a8438ea4c39503a7446dec3aa90cf464b7abb68a6e42bac488ef9705517bd333b64bce219915b' - '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 -} |