Date: Thursday, May 19, 2016 @ 09:04:53 Author: arojas Revision: 175678
New purpose dependency Added: accounts-qml-module/ accounts-qml-module/trunk/ accounts-qml-module/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: accounts-qml-module/trunk/PKGBUILD =================================================================== --- accounts-qml-module/trunk/PKGBUILD (rev 0) +++ accounts-qml-module/trunk/PKGBUILD 2016-05-19 07:04:53 UTC (rev 175678) @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 172178 2016-04-27 20:27:35Z arojas $ +# Maintainer: Antonio Rojas <[email protected]> + +pkgname=accounts-qml-module +pkgver=0.6+16.04.20151106 +pkgrel=1 +pkgdesc="Expose the Online Accounts API to QML applications" +url="https://launchpad.net/accounts-qml-module" +arch=(i686 x86_64) +license=(LGPL) +depends=(signon libaccounts-qt qt5-declarative) +makedepends=(qt5-tools) +source=("http://archive.ubuntu.com/ubuntu/pool/main/a/$pkgname/${pkgname}_$pkgver.orig.tar.gz") +md5sums=('f1d370ae9bd1b654949b8759d713fe45') + +prepare() { + mkdir -p build +} + +build() { + cd build + qmake-qt5 ../$pkgname-$pkgver/$pkgname.pro PREFIX=/usr + make +} + +package() { + cd build + make INSTALL_ROOT="$pkgdir" install_subtargets # skip docs +} +
