Date: Saturday, April 20, 2019 @ 16:45:27
Author: arojas
Revision: 351111
archrelease: copy trunk to testing-x86_64
Added:
kdenetwork-filesharing/repos/testing-x86_64/
kdenetwork-filesharing/repos/testing-x86_64/PKGBUILD
(from rev 351110, kdenetwork-filesharing/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: kdenetwork-filesharing/repos/testing-x86_64/PKGBUILD (from rev 351110,
kdenetwork-filesharing/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-20 16:45:27 UTC (rev 351111)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kdenetwork-filesharing
+pkgver=19.04.0
+pkgrel=1
+pkgdesc='Properties dialog plugin to share a directory with the local network'
+url='https://www.kde.org/applications/internet/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdenetwork)
+depends=(kio)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('samba: folder sharing')
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a88277659bc1dd5ddfea9dd63c3764a1f31d06235aa07c528c12a63a7605c943'
+ 'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck
<[email protected]>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}