mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS * Rename build_extras and install_extras to configure_build_extras and configure_install_extras
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Libdb < Package
|
|
description 'Berkeley DB is a family of embedded key-value database libraries providing scalable high-performance data management services to applications.'
|
|
homepage 'https://github.com/berkeleydb/libdb'
|
|
version '5.3.28-dfsg2-1'
|
|
license 'ASM, BSD, CDDL, custom and SPL.'
|
|
compatibility 'all'
|
|
source_url 'https://salsa.debian.org/debian/db5.3.git'
|
|
git_hashtag 'debian/5.3.28+dfsg2-1'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '13c6a2e5b7482bf638b3a37d924a31a782dfc21dd9ac6834885e11d0d7730223',
|
|
armv7l: '13c6a2e5b7482bf638b3a37d924a31a782dfc21dd9ac6834885e11d0d7730223',
|
|
i686: 'f632cf996b72841a48ca0201aaf5dd9a98fc3a51d81ea3e526c2bca9e12b7d13',
|
|
x86_64: 'd849400eb1a1b0ea3797b96ae6e7361c3c392ec11ceeb025d4dca37d1a3c2ae6'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gcc_lib' # R
|
|
|
|
def self.patch
|
|
system 'for i in $(cat debian/patches/series); do patch -Np1 -i debian/patches/${i}; done'
|
|
end
|
|
|
|
def self.build
|
|
Dir.chdir 'build_unix' do
|
|
system "mold -run ../dist/configure #{CREW_CONFIGURE_OPTIONS} \
|
|
--enable-compat185 \
|
|
--enable-cxx \
|
|
--enable-dbm \
|
|
--enable-stl"
|
|
system "make -j #{CREW_NPROC} || make"
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
Dir.chdir 'build_unix' do
|
|
system 'make', "docdir=#{CREW_PREFIX}/share/doc/db-5.3.28", "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|
|
end
|