Commit 703e0628 authored by ThatGeekyWeeb's avatar ThatGeekyWeeb Committed by GitHub

New Packcage - Papirus icon theme (#4240)

parent cbd87c3e
require 'package'
class Lxappearance < Package
description 'LXDE Theme Switcher'
homepage 'http://lxde.org/'
version '0.6.3'
compatibility 'all'
source_url 'https://downloads.sourceforge.net/sourceforge/lxde/lxappearance-0.6.3.tar.xz'
source_sha256 '7222d858b8fef4b7967c42142d61e82ded6dd42dc5ef1d59caad775795928b38'
depends_on 'gtk3'
depends_on 'desktop_file_utilities'
depends_on 'dbus_glib'
def self.build
system "./configure #{CREW_OPTIONS} --enable-gtk3 --enable-dbus"
system "make -j#{CREW_NPROC}"
end
def self.install
system "make install DESTDIR=#{CREW_DEST_DIR}"
end
end
\ No newline at end of file
require 'package'
class Papirus_icon_theme < Package
description 'SVG icon theme for Linux, based on Paper Icon Set'
homepage 'https://github.com/PapirusDevelopmentTeam/papirus-icon-theme'
version '20200801'
compatibility 'all'
source_url 'https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20200801.tar.gz'
source_sha256 '30c1f537b8fd5c4e5991fcd96d62cf2119a3a844b6e8fc55a4a08841b49137fd'
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/icons/"
FileUtils.cp_r Dir.glob('*Papirus*'), "#{CREW_DEST_PREFIX}/share/icons/"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment