blob: de84aff3e0db5e635160247f72db7dda08517d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Simon Legner <Simon.Legner@gmail.com>
# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
# Contributor: Christopher Loen <christopherloen at gmail dot com>
# Contributor: Artem Vorotnikov <artem@vorotnikov.me>
# Generated by gem2arch (https://github.com/anatol/gem2arch)
_gemname_="curses"
pkgname="ruby-${_gemname_}"
pkgver=1.5.3
pkgrel=2
pkgdesc="Ruby binding for curses, ncurses, and PDCurses"
arch=("x86_64")
url="https://github.com/ruby/curses"
license=("BSD-2-Clause OR Ruby")
depends=("glibc" "ncurses" "ruby")
makedepends=("ruby-rdoc")
options=(!emptydirs)
source=("https://rubygems.org/downloads/${_gemname_}-${pkgver}.gem")
package() {
local _gemdir_="$(ruby -e'puts Gem.default_dir')"
gem install --ignore-dependencies --no-user-install -i "${pkgdir}/${_gemdir_}" -n "${pkgdir}/usr/bin" "${_gemname_}-${pkgver}.gem"
rm "${pkgdir}/${_gemdir_}/cache/${_gemname_}-${pkgver}.gem"
}
sha256sums=('86d219442e7fe78e68c609e6884f08b439b7508cf3f9d5b914f75c106e77bf7c')
|