Date: Saturday, January 30, 2016 @ 07:05:03 Author: fyan Revision: 159455
addpkg: papyros-files 0.0.5.20151231-1 Added: papyros-files/ papyros-files/repos/ papyros-files/trunk/ papyros-files/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: papyros-files/trunk/PKGBUILD =================================================================== --- papyros-files/trunk/PKGBUILD (rev 0) +++ papyros-files/trunk/PKGBUILD 2016-01-30 06:05:03 UTC (rev 159455) @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 159441 2016-01-30 05:03:01Z fyan $ +# Maintainer: Felix Yan <[email protected]> +# Contributor: Riley Trautman <[email protected]> +# Contributor: Michael Spencer <[email protected]> + +pkgname=papyros-files +pkgver=0.0.5.20151231 +_commit=f95637cd8afcd5d91391d690417501d67cf1c005 +pkgrel=1 +pkgdesc="The file manager for Papyros" +arch=("i686" "x86_64") +url="https://github.com/papyros/files-app" +license=("LGPL") +depends=("qml-material") +makedepends=("git" "cmake" "qt5-tools") +source=("git+https://github.com/papyros/files-app.git#commit=$_commit") +sha256sums=("SKIP") + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake "$srcdir/files-app" -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}
