Files
chromebrew/packages/caja.rb
2022-10-05 20:16:53 -05:00

47 lines
1.2 KiB
Ruby

# Adapted from Arch Linux caja PKGBUILD at:
# https://github.com/archlinux/svntogit-community/blob/packages/caja/trunk/PKGBUILD
require 'package'
class Caja < Package
description 'Caja file manager for the MATE desktop'
homepage 'https://mate-desktop.org'
@_ver = '1.27.0'
version @_ver
compatibility 'all'
license 'GPL-2+ LGPL-2+'
source_url "https://pub.mate-desktop.org/releases/#{@_ver.rpartition('.')[0]}/caja-#{@_ver}.tar.xz"
source_sha256 '82aa0cc7a50a844d686ac3d29ca1866033ba4fb0c03e198838161337301de6d5'
depends_on 'exempi'
depends_on 'gvfs'
depends_on 'libexif'
depends_on 'libsm'
depends_on 'mate_desktop'
depends_on 'libnotify'
depends_on 'sommelier'
def self.build
system "env CFLAGS='-flto=auto' CXXFLAGS='-flto=auto' \
LDFLAGS='-flto=auto' \
./configure #{CREW_OPTIONS}"
# https://bugzilla.gnome.org/show_bug.cgi?id=656231
system "sed -i 's/ -shared / -Wl,-O1,--as-needed\\0/g' libtool"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.postinstall
system "glib-compile-schemas #{CREW_PREFIX}/share/glib-2.0/schemas"
end
def self.check
system 'make', 'check'
end
end