Files
chromebrew/packages/profanity.rb
satmandu 93276e3388 #2. Convert curl, git, pixz to static, and update dependencies... (#5837)
* Convert curl, git, pixz to static, and update dependencies...

* Make git, curl, pixz first to get updated.

* updates to curl, git, libcurl, openssl

* Update Git build, more carefully add upx compression.

* add libcurl dep to curl

* move license line

* don't save rdfind results

* curl and libidn2 changes

* fix remove check file

* curl changes, add package updates to fix sommelier
2021-06-07 12:01:45 -05:00

42 lines
1.6 KiB
Ruby

require 'package'
class Profanity < Package
description 'A console based XMPP client'
homepage 'https://profanity-im.github.io/'
version '0.6.0'
license 'GPL-3'
compatibility 'all'
source_url 'https://profanity-im.github.io/profanity-0.6.0.tar.gz'
source_sha256 'f1b2773b79eb294297686f3913e9489c20effae5e3a335c8956db18f6ee2f660'
binary_url ({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/profanity/0.6.0_armv7l/profanity-0.6.0-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/profanity/0.6.0_armv7l/profanity-0.6.0-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/profanity/0.6.0_i686/profanity-0.6.0-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/profanity/0.6.0_x86_64/profanity-0.6.0-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '59229f908a8f21765e77aaa1a491ae23155452f013e9cc992f365bd66293f795',
armv7l: '59229f908a8f21765e77aaa1a491ae23155452f013e9cc992f365bd66293f795',
i686: '3d5c96c99a811d0a86b89ab88bb42fb5d277fc97a8f29a54b8985172ec7736ff',
x86_64: 'ead2d0a06e37c622913b76941c292a3b10ad500a1f75ebab45e2b08779f007bd',
})
depends_on 'libcurl'
depends_on 'glib'
depends_on 'gpgme'
depends_on 'gtk2'
depends_on 'libotr'
depends_on 'libnotify'
depends_on 'libstrophe'
def self.build
system "./configure", "--prefix=#{CREW_PREFIX}", "--libdir=#{CREW_LIB_PREFIX}"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end