[arch-commits] Commit in (kup kup/trunk kup/trunk/PKGBUILD kup/trunk/kup.install)

Antonio Rojas arojas at archlinux.org
Fri Nov 27 22:19:15 UTC 2015


    Date: Friday, November 27, 2015 @ 23:19:14
  Author: arojas
Revision: 147883

Add kup (21 votes)

Added:
  kup/
  kup/trunk/
  kup/trunk/PKGBUILD
  kup/trunk/kup.install

-------------+
 PKGBUILD    |   39 +++++++++++++++++++++++++++++++++++++++
 kup.install |   11 +++++++++++
 2 files changed, 50 insertions(+)

Added: kup/trunk/PKGBUILD
===================================================================
--- kup/trunk/PKGBUILD	                        (rev 0)
+++ kup/trunk/PKGBUILD	2015-11-27 22:19:14 UTC (rev 147883)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: XavierCLL <xavier.corredor.llano (a) gmail.com>
+# PKGBUILD base; Simper < simonpersson1 AT gmail DOT com >
+
+pkgname=kup
+pkgver=0.6.0
+pkgrel=7
+pkgdesc="A KDE bup backup software for helping people to keep up-to-date backups"
+arch=(i686 x86_64)
+url="http://kde-apps.org/content/show.php/Kup+Backup+System?content=147465"
+license=(GPL2)
+depends=(kidletime kinit hicolor-icon-theme)
+makedepends=(extra-cmake-modules)
+optdepends=('bup: support for incremental backups'
+            'rsync: support for synced backups')
+install=$pkgname.install
+source=("https://github.com/spersson/Kup/archive/$pkgname-$pkgver.tar.gz")
+md5sums=('ba71ce5caf38f63e3881ecf5d56e7eab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../Kup-$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+    -DSYSCONF_INSTALL_DIR=/etc \
+    -DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


Property changes on: kup/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: kup/trunk/kup.install
===================================================================
--- kup/trunk/kup.install	                        (rev 0)
+++ kup/trunk/kup.install	2015-11-27 22:19:14 UTC (rev 147883)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



More information about the arch-commits mailing list