[arch-commits] Commit in nemo/repos/community-x86_64 (PKGBUILD PKGBUILD)
Eli Schwartz
eschwartz at archlinux.org
Sun Apr 22 06:53:52 UTC 2018
Date: Sunday, April 22, 2018 @ 06:53:51
Author: eschwartz
Revision: 317279
archrelease: copy trunk to community-x86_64
Added:
nemo/repos/community-x86_64/PKGBUILD
(from rev 317278, nemo/trunk/PKGBUILD)
Deleted:
nemo/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 100 ++++++++++++++++++++++++++++---------------------------------
1 file changed, 47 insertions(+), 53 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-04-22 06:53:26 UTC (rev 317278)
+++ PKGBUILD 2018-04-22 06:53:51 UTC (rev 317279)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira <alexfilgueira at cinnarch.com>
-# Contributor: Ner0
-
-pkgname=nemo
-pkgver=3.6.5
-pkgrel=1
-pkgdesc="Cinnamon file manager (Nautilus fork)"
-arch=('x86_64')
-url="https://github.com/linuxmint/nemo"
-license=('GPL')
-depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 'python'
- 'cinnamon-desktop' 'libnotify' 'libxml2' 'cinnamon-translations' 'xapps')
-optdepends=('ffmpegthumbnailer: support for video thumbnails')
-makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common'
- 'python-gobject' 'python-polib' 'python2-gobject')
-options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver")
-sha512sums=('f224cc5749e39f477594c1eb3133454db7838f1f62b924f1ad868038026318cfdc52c23d65e1be309e71c0fae046cff0bdc908003235630b986c897820217d4e')
-
-prepare() {
- cd linuxmint-nemo-*
-
- # Rename 'Files' app name to avoid having the same as nautilus
- sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ 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-tracker \
- --disable-gtk-doc-html \
- --disable-schemas-compile \
- --disable-selinux
-
- #https://bugzilla.gnome.org/show_bug.cgi?id=656231
- sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
- make
-}
-
-package() {
- cd linuxmint-nemo-*
-
- make DESTDIR="$pkgdir" install
-
- # Remove D-Bus activation file to avoid conflict with nautilus-desktop
- rm "$pkgdir/usr/share/dbus-1/services/nemo.FileManager1.service"
-}
Copied: nemo/repos/community-x86_64/PKGBUILD (from rev 317278, nemo/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-04-22 06:53:51 UTC (rev 317279)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Eli Schwartz <eschwartz at archlinux.org>
+# Contributor: Alexandre Filgueira <alexfilgueira at cinnarch.com>
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=3.8.0
+pkgrel=1
+pkgdesc="Cinnamon file manager (Nautilus fork)"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname}"
+license=('GPL')
+depends=('cinnamon-desktop' 'dconf' 'gvfs' 'exempi' 'libexif' 'libnotify' 'libxml2' 'python' 'xapps')
+optdepends=('cinnamon-translations: i18n'
+ 'ffmpegthumbnailer: support for video thumbnails')
+makedepends=('meson' 'gobject-introspection' 'intltool')
+source=("$pkgname-$pkgver.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('488282d607296bfefa692af2bf12f25fe5f0570945f75fa17ba64dd38eb5b982f8163d311310a6619bdba6241e0b3f15d5bcc10799234a01bc47e7ec63132c25')
+
+prepare() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ # Rename 'Files' app name to avoid having the same as nautilus
+ sed -i '/^\[Desktop Entry/,/^\[Desktop Action/ s/^Name\(.*\)=.*/Name\1=Nemo/' data/nemo.desktop.in
+}
+
+build() {
+ mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+ cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+ meson --prefix=/usr \
+ --libexecdir=lib/${pkgname} \
+ --buildtype=plain \
+ ..
+ ninja
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+ DESTDIR="${pkgdir}" ninja install
+
+ # https://github.com/linuxmint/nemo/pull/1835
+ rm "${pkgdir}"/usr/lib/libnemo-private.a
+
+
+}
More information about the arch-commits
mailing list