Date: Wednesday, January 16, 2019 @ 14:59:43
  Author: felixonmars
Revision: 423545

archrelease: copy trunk to community-staging-x86_64

Added:
  poco/repos/community-staging-x86_64/
  poco/repos/community-staging-x86_64/PKGBUILD
    (from rev 423543, poco/trunk/PKGBUILD)

----------+
 PKGBUILD |   35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

Copied: poco/repos/community-staging-x86_64/PKGBUILD (from rev 423543, 
poco/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-16 14:59:43 UTC (rev 423545)
@@ -0,0 +1,35 @@
+# Maintainer: Sergej Pupykin <[email protected]>
+# Maintainer: Ido Rosen <[email protected]>
+# Contributor: Ross Whitfield <[email protected]>
+# Contributor: Mateusz Paluszkiewcz <aifam96 at gmail dot com>
+# Contributor: Christopher Reimer <vdr4arch at creimer dot net>
+
+pkgname=poco
+pkgver=1.9.0
+_pkgver=${pkgver/_/}
+pkgrel=2
+pkgdesc="C++ class libraries for network-centric, portable applications, 
complete edition with debug libraries"
+arch=('x86_64')
+url="http://www.pocoproject.org/";
+license=('custom:boost')
+depends=('mariadb-libs' 'openssl' 'unixodbc')
+makedepends=('cmake')
+source=("https://pocoproject.org/releases/poco-${_pkgver%p?}/poco-${_pkgver}-all.tar.bz2";)
+sha256sums=('b6e33898588e74337efec4e8d8b9b277bb653b08318a79215f9aa4a3ff1ea9fd')
+
+build() {
+  cd "${srcdir}/poco-${_pkgver}-all"
+  mkdir -p build
+  cd build
+  cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    ..
+  make
+}
+
+package() {
+  cd "${srcdir}/poco-${_pkgver}-all"/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 '../LICENSE' "${pkgdir}/usr/share/licenses/poco/LICENSE"
+}

Reply via email to