Date: Sunday, February 24, 2019 @ 21:30:24 Author: idevolder Revision: 435557
archrelease: copy trunk to community-testing-x86_64 Added: p8-platform/repos/community-testing-x86_64/ p8-platform/repos/community-testing-x86_64/PKGBUILD (from rev 435556, p8-platform/trunk/PKGBUILD) ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Copied: p8-platform/repos/community-testing-x86_64/PKGBUILD (from rev 435556, p8-platform/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2019-02-24 21:30:24 UTC (rev 435557) @@ -0,0 +1,34 @@ +# Maintainer: BlackIkeEagle <ike DOT devolder AT gmail DOT com> +# Contributor: Cedric Girard <girard.ced...@gmail.com> + +pkgname=p8-platform +pkgver=2.1.0.1 +pkgrel=3 +pkgdesc="Platform support library used by libCEC and binary add-ons for Kodi" +arch=('x86_64') +url="https://github.com/Pulse-Eight/platform" +license=('GPL') +conflicts=('libplatform') +replaces=('libplatform') +makedepends=('cmake') +depends=('gcc-libs') +source=(https://github.com/Pulse-Eight/platform/archive/p8-platform-${pkgver}.tar.gz) +sha256sums=('064f8d2c358895c7e0bea9ae956f8d46f3f057772cb97f2743a11d478a0f68a0') + +build() { + cd "$srcdir"/platform-p8-platform-${pkgver} + cmake . \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_SHARED_LIBS=1 \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib + make +} + +package() { + cd "$srcdir"/platform-p8-platform-${pkgver} + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: