mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt bacula to updater-bacula-15.0.3 * updater-bacula-15.0.3: Build Run on linux/amd64. * updater-bacula-15.0.3: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Bacula < Autotools
|
|
description 'Bacula is a set of computer programs that permits the system administrator to manage backup, recovery, and verification of computer data across a network of computers of different kinds.'
|
|
homepage 'https://www.bacula.org/'
|
|
version '15.0.3'
|
|
license 'AGPL-3'
|
|
compatibility 'x86_64'
|
|
source_url "https://downloads.sourceforge.net/project/bacula/bacula/#{version}/bacula-#{version}.tar.gz"
|
|
source_sha256 '294afd3d2eb9d5b71c3d0e88fdf19eb513bfdb843b28d35c0552e4ae062827a1'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: '883d7955b35e0e1608a923b51e863c32fab10a5628567576bb7155c0f22b4276'
|
|
})
|
|
|
|
depends_on 'acl' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'lzo'
|
|
depends_on 'mysql'
|
|
depends_on 'openssl' # R
|
|
depends_on 'sommelier'
|
|
depends_on 'tcpwrappers'
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
autotools_configure_options "--sbindir=#{CREW_PREFIX}/bin \
|
|
--enable-smartalloc \
|
|
--with-mysql \
|
|
--with-tcp-wrappers \
|
|
--with-pid-dir=#{CREW_PREFIX}/var/run \
|
|
--with-subsys-dir=#{CREW_PREFIX}/var/run/subsys \
|
|
--with-working-dir=#{CREW_PREFIX}/var/run/bacula \
|
|
--with-dump-email=#{USER}@localhost \
|
|
--with-job-email=#{USER}@localhost"
|
|
end
|