mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
36 lines
1.2 KiB
Ruby
36 lines
1.2 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Freetds < Autotools
|
|
description 'FreeTDS is a set of libraries for Unix and Linux that allows your programs to natively talk to Microsoft SQL Server and Sybase databases.'
|
|
homepage 'https://www.freetds.org/'
|
|
version '1.5.14'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/FreeTDS/freetds.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2c37929c92136d3eff6c560aa245d7e82e8165986e5ebe040989d7720e63eaf6',
|
|
armv7l: '2c37929c92136d3eff6c560aa245d7e82e8165986e5ebe040989d7720e63eaf6',
|
|
i686: '4b737bf0e3fb16a8b9012154a48528d58286f70d5671f22b8da9ccd5f78c5caa',
|
|
x86_64: 'aa68c5815ca66fe619c31d91385e373450fda486bf15e26adbae613fa8f6d08e'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gperf' => :build
|
|
depends_on 'libtool' # R
|
|
depends_on 'ncurses' => :executable
|
|
depends_on 'openssl' # R
|
|
depends_on 'readline' => :executable
|
|
depends_on 'unixodbc' # R
|
|
|
|
def self.postinstall
|
|
ExitMessage.add <<~EOM
|
|
Edit the #{CREW_PREFIX}/etc/freetds.conf file to add servers.
|
|
|
|
Test the connection with #{CREW_PREFIX}/bin/tsql.
|
|
EOM
|
|
end
|
|
end
|