[arch-commits] Commit in pantheon-files/repos/community-x86_64 (PKGBUILD PKGBUILD)

Maxime Gauduin alucryd at archlinux.org
Thu Dec 6 13:03:46 UTC 2018


    Date: Thursday, December 6, 2018 @ 13:03:45
  Author: alucryd
Revision: 411720

archrelease: copy trunk to community-x86_64

Added:
  pantheon-files/repos/community-x86_64/PKGBUILD
    (from rev 411719, pantheon-files/trunk/PKGBUILD)
Deleted:
  pantheon-files/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  114 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 63 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-12-06 13:03:34 UTC (rev 411719)
+++ PKGBUILD	2018-12-06 13:03:45 UTC (rev 411720)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-
-pkgname=pantheon-files
-pkgver=0.3.5.r5882.9785e68a
-pkgrel=1
-pkgdesc='The Pantheon File Manager'
-arch=('x86_64')
-url='https://launchpad.net/pantheon-files'
-license=('GPL3')
-groups=('pantheon')
-depends=('atk' 'cairo' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3' 'libcanberra'
-         'libgee' 'libnotify' 'pango' 'sqlite' 'zeitgeist'
-         'libgranite.so')
-makedepends=('cmake' 'git' 'gnome-common' 'vala')
-optdepends=('contractor: Various context menu entries'
-            'tumbler: Thumbnails generation')
-_commit='9785e68aa828e5a2b400a277dd70cd7eea985512'
-source=("pantheon-files::git+https://github.com/elementary/files.git#commit=${_commit}")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pantheon-files
-
-  echo "0.3.5.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
-}
-
-prepare() {
-  if [[ -d build ]]; then
-    rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../pantheon-files \
-    -DCMAKE_BUILD_TYPE='Release' \
-    -DCMAKE_INSTALL_PREFIX='/usr' \
-    -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
-    -DCMAKE_SKIP_RPATH='TRUE' \
-    -DGSETTINGS_COMPILE='FALSE'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-files/repos/community-x86_64/PKGBUILD (from rev 411719, pantheon-files/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-12-06 13:03:45 UTC (rev 411720)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=pantheon-files
+pkgver=4.0
+pkgrel=1
+pkgdesc='The Pantheon File Manager'
+arch=(x86_64)
+url='https://launchpad.net/pantheon-files'
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  atk
+  cairo
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libcanberra
+  libgee
+  libgranite.so
+  libnotify
+  pango
+  sqlite
+  zeitgeist
+)
+makedepends=(
+  cmake
+  git
+  gnome-common
+  ninja
+  vala
+)
+optdepends=(
+  'contractor: Various context menu entries'
+  'tumbler: Thumbnails generation'
+)
+source=(pantheon-files::git+https://github.com/elementary/files.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../pantheon-files \
+    -G Ninja \
+    -DCMAKE_BUILD_TYPE='Release' \
+    -DCMAKE_INSTALL_PREFIX='/usr' \
+    -DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+    -DCMAKE_SKIP_RPATH='TRUE' \
+    -DGSETTINGS_COMPILE='FALSE'
+  cmake --build .
+}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --build build --target install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list