diff options
Diffstat (limited to 'community/nemo/PKGBUILD')
-rw-r--r-- | community/nemo/PKGBUILD | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/community/nemo/PKGBUILD b/community/nemo/PKGBUILD index 12558ef0d..3a53c8698 100644 --- a/community/nemo/PKGBUILD +++ b/community/nemo/PKGBUILD @@ -1,24 +1,26 @@ -# $Id: PKGBUILD 108679 2014-04-01 03:36:38Z faidoc $ +# $Id: PKGBUILD 109170 2014-04-11 03:01:08Z bgyorgy $ # Maintainer: Alexandre Filgueira <alexfilgueira@cinnarch.com> # Contributor: Ner0 pkgname=nemo pkgver=2.0.8 -pkgrel=2 +pkgrel=3 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' 'libtracker-sparql' 'libxml2' + 'cinnamon-desktop' 'gnome-icon-theme' 'libnotify' 'libxml2' 'cinnamon-translations') makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common') options=('!emptydirs') install=nemo.install source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver" - "Fix_rename_entry_position.patch") + "Fix_rename_entry_position.patch" + "adwaita_style.patch") sha256sums=('6a40868e46fd2ed6c27e694e76c160996d16e2d27681bf5126e6b0e647c24033' - '07e81aaeeff9ae8c6de76fe2b87b28b89323577ef425596241b96e94b4e04750') + '07e81aaeeff9ae8c6de76fe2b87b28b89323577ef425596241b96e94b4e04750' + '6faa6a5a7042832fb1230a5d21ebe8572c100798e724fcd72fee86dc01d69290') prepare() { cd linuxmint-nemo-* @@ -26,6 +28,9 @@ prepare() { # Rename files and directory : invisible field: https://bugzilla.redhat.com/show_bug.cgi?id=1045181 patch -Np1 -i ../Fix_rename_entry_position.patch + # Fix white text on breadcrumb with Adwaita + patch -Np1 -i ../adwaita_style.patch + # Python2 fix sed -i 's/bin\/python/bin\/python2/g' files/usr/share/nemo/actions/myaction.py @@ -44,6 +49,7 @@ build() { --libexecdir=/usr/lib/nemo \ --disable-update-mimedb \ --disable-packagekit \ + --disable-tracker \ --disable-gtk-doc-html \ --disable-schemas-compile make |