mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* crew: cache builds * Initial Gnome43/Libjpeg_turbo/ICU72 commits squashed * fix lint error * update packages.yaml * Vulkan packages -> 1.3.231 * add packages to packages.yaml * add more to packages.yaml * update libxshmfence * pixman -> 0.42.0 * libpciaccess -> 0.17.0 * update libxau * update libxfont2 * update libxcb * many updates * updates * baobab updates * add libshumate * update gnome_calculator * update dfonf_editor * update evince * add libpanel * update libpeas * update libgweather * update libgudev gnome_maps * update upower and libxfixes * style update * update gnome_session * update gnome_settings_daemon * temporary partial webkit2gtk upload * update packages.yaml * fix ruby file perms * update folks * move webkit2gtk_4 back to 2.38.0 * update icu4c, change webkit2gtk build * add updated webkit2gtk_5 file * update js102 * add x86 builds for webkit2gtk_4 * add mozjs exclusion to icu4c postinstall * add builds for evolution_data_server * update gemacs * update webkit2gtk packages * update emacs * add folks fix * loosen icu4c postinstall check * rebuild libportal with gtk3 * update epiphany * openssh -> 9.1 * add x86 webkit2gtk_4 binaries * add postinstall to webkit2gtk_4 * update svt_av1 * update libavif * linting fix * curl -> 7.86.0 * git -> 2.38.1 * add postinstall to gnome_console * add gcc10 for armv7l * add gcc10 binaries * lint gcc10 * rebase fix * Add WIP webkit2gtk builds * add back postintall to gnome_maps * gstreamer version change * cleanup geocode_glib, and fix gnome_maps depend * s/@_ver.to_s/@_ver/ * add mpv build and gtk4 -> 4.8.2 * bump curl version to 7.86.0 * remove other version binaries from webkit2gtk builds * add i686 build * adjust compatibility for gemacs... for now. * Add code to sommelier to adjust for whether scripts are sourced or run. * make -> 4.4 * bump version
50 lines
2.4 KiB
Ruby
50 lines
2.4 KiB
Ruby
require 'package'
|
|
|
|
class Hplip < Package
|
|
description 'Print, Scan and Fax Drivers for Linux'
|
|
homepage 'https://developers.hp.com/hp-linux-imaging-and-printing/'
|
|
version '3.20.2'
|
|
license 'GPL-2'
|
|
compatibility 'i686,x86_64'
|
|
source_url 'https://sourceforge.net/projects/hplip/files/hplip/3.20.2/hplip-3.20.2.tar.gz'
|
|
source_sha256 '90c49d74688b4d745a739a6db9bf8dbdfa134c24e921e31909bffe9d84f471c2'
|
|
|
|
binary_url({
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/hplip/3.20.2_i686/hplip-3.20.2-chromeos-i686.tar.xz',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/hplip/3.20.2_x86_64/hplip-3.20.2-chromeos-x86_64.tar.xz'
|
|
})
|
|
binary_sha256({
|
|
i686: '3665d159fe1684d280689e09546a9f6cb0ab7be68d4e670f40c4111ae015d8b7',
|
|
x86_64: '05b80f04ea8ac68ffad990ed86140932f6353d25f7fd116df5190e8484385f09'
|
|
})
|
|
|
|
depends_on 'cups'
|
|
depends_on 'dbus'
|
|
depends_on 'libjpeg'
|
|
depends_on 'sane_backends'
|
|
depends_on 'gcc' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libusb' # R
|
|
depends_on 'zlibpkg' # R
|
|
|
|
def self.patch
|
|
system "curl -Ls -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD'"
|
|
system "curl -Ls -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'"
|
|
system "sed -i 's,/usr/bin/perl,#{CREW_PREFIX}/bin/perl,g' hpijs-drv"
|
|
system "sed -i 's,/usr/include,#{CREW_PREFIX}/include,g' Makefile.in Makefile.am config.guess installer/core_install.py installer/dcheck.py"
|
|
system 'sed -i "s,return(true);,return TRUE;,g" prnt/hpcups/genPCLm.cpp'
|
|
system 'sed -i "s,return true;,return TRUE;,g" prnt/hpcups/genPCLm.cpp'
|
|
system "sed -i 's,/usr/bin/file,#{CREW_PREFIX}/bin/file,g' configure"
|
|
end
|
|
|
|
def self.build
|
|
system "./configure #{CREW_OPTIONS} --disable-network-build"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system "sed -i 's,/etc/sane.d,#{CREW_PREFIX}/etc/sane.d,g' Makefile"
|
|
system "make DESTDIR=#{CREW_DEST_DIR} systraydir=#{CREW_PREFIX}/etc/xdg/autostart rulesdir=#{CREW_PREFIX}/etc/udev/rules.d hplip_confdir=#{CREW_PREFIX}/etc/hp cupsfilterdir=#{CREW_LIB_PREFIX}/cups/filter rulessystemdir=#{CREW_LIB_PREFIX}/systemd/system cupsbackenddir=#{CREW_LIB_PREFIX}/cups/backend mimedir=#{CREW_PREFIX}/share/cups/mime abs_mimedir=#{CREW_PREFIX}/share/cups/mime halpredir=#{CREW_PREFIX}/share/hal/fdi/preprobe/10osvendor icondir=#{CREW_PREFIX}/share/applications install"
|
|
end
|
|
end
|