[arch-commits] Commit in nemo/repos (6 files)

Alexandre Filgueira faidoc at nymeria.archlinux.org
Mon Apr 14 00:41:15 UTC 2014


    Date: Monday, April 14, 2014 @ 02:41:14
  Author: faidoc
Revision: 109357

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  nemo/repos/community-testing-i686/
  nemo/repos/community-testing-i686/PKGBUILD
    (from rev 109356, nemo/trunk/PKGBUILD)
  nemo/repos/community-testing-i686/nemo.install
    (from rev 109356, nemo/trunk/nemo.install)
  nemo/repos/community-testing-x86_64/
  nemo/repos/community-testing-x86_64/PKGBUILD
    (from rev 109356, nemo/trunk/PKGBUILD)
  nemo/repos/community-testing-x86_64/nemo.install
    (from rev 109356, nemo/trunk/nemo.install)

---------------------------------------+
 community-testing-i686/PKGBUILD       |   53 ++++++++++++++++++++++++++++++++
 community-testing-i686/nemo.install   |   14 ++++++++
 community-testing-x86_64/PKGBUILD     |   53 ++++++++++++++++++++++++++++++++
 community-testing-x86_64/nemo.install |   14 ++++++++
 4 files changed, 134 insertions(+)

Copied: nemo/repos/community-testing-i686/PKGBUILD (from rev 109356, nemo/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2014-04-14 00:41:14 UTC (rev 109357)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexandre Filgueira <alexfilgueira at cinnarch.com>
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/nemo"
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+         'cinnamon-desktop' 'gnome-icon-theme' 'libnotify' 'libxml2'
+         'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver")
+sha256sums=('d909354fb5378804eb9abcfe04e3f4b4e482e7afbec018cacc35b3e845cce466')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  sed -i 's/bin\/python/bin\/python2/g' files/usr/share/nemo/actions/myaction.py
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Fix build
+  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
+
+  # Rename 'Files' app name to avoid having the same as nautilus
+  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
+}
+
+build() {
+  cd linuxmint-nemo-*
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+      --localstatedir=/var --disable-static \
+      --libexecdir=/usr/lib/nemo \
+      --disable-update-mimedb \
+      --disable-packagekit \
+      --disable-tracker \
+      --disable-gtk-doc-html \
+      --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR="$pkgdir/" install
+}

Copied: nemo/repos/community-testing-i686/nemo.install (from rev 109356, nemo/trunk/nemo.install)
===================================================================
--- community-testing-i686/nemo.install	                        (rev 0)
+++ community-testing-i686/nemo.install	2014-04-14 00:41:14 UTC (rev 109357)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}

Copied: nemo/repos/community-testing-x86_64/PKGBUILD (from rev 109356, nemo/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2014-04-14 00:41:14 UTC (rev 109357)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexandre Filgueira <alexfilgueira at cinnarch.com>
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxmint/nemo"
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python2'
+         'cinnamon-desktop' 'gnome-icon-theme' 'libnotify' 'libxml2'
+         'cinnamon-translations')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common' 'python2-gobject' 'python2-polib')
+options=('!emptydirs')
+install=nemo.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver")
+sha256sums=('d909354fb5378804eb9abcfe04e3f4b4e482e7afbec018cacc35b3e845cce466')
+
+prepare() {
+  cd linuxmint-nemo-*
+
+  # Python2 fix
+  sed -i 's/bin\/python/bin\/python2/g' files/usr/share/nemo/actions/myaction.py
+  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+
+  # Fix build
+  sed -i '/AC_SUBST(DISABLE_DEPRECATED_CFLAGS)/d' configure.in
+
+  # Rename 'Files' app name to avoid having the same as nautilus
+  sed -i 's/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in.in
+}
+
+build() {
+  cd linuxmint-nemo-*
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+      --localstatedir=/var --disable-static \
+      --libexecdir=/usr/lib/nemo \
+      --disable-update-mimedb \
+      --disable-packagekit \
+      --disable-tracker \
+      --disable-gtk-doc-html \
+      --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+
+  make DESTDIR="$pkgdir/" install
+}

Copied: nemo/repos/community-testing-x86_64/nemo.install (from rev 109356, nemo/trunk/nemo.install)
===================================================================
--- community-testing-x86_64/nemo.install	                        (rev 0)
+++ community-testing-x86_64/nemo.install	2014-04-14 00:41:14 UTC (rev 109357)
@@ -0,0 +1,14 @@
+post_install() {
+  glib-compile-schemas --allow-any-name usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-mime-database usr/share/mime > /dev/null
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+post_remove() {
+  post_install "$1"
+}




More information about the arch-commits mailing list