summaryrefslogtreecommitdiff
path: root/social/ruby-shadow/PKGBUILD
blob: ec243aaea202fe21b223c7e1f89b2ac961e8c1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Thomas S Hatch <thatch45@gmail.com>
pkgname=ruby-shadow
pkgver=1.4.9
pkgrel=4
pkgdesc="Interface for shadow passwords for Ruby"
arch=(i686 x86_64)
depends=('ruby')
license=('publicdomain')
url=('https://github.com/thatch45/ruby-shadow')
source=("https://github.com/downloads/thatch45/ruby-shadow/$pkgname-$pkgver.tar.gz")
md5sums=('63ee20d3f0cb456dc2a50107124c64d9')

build() {
	cd $srcdir/shadow-$pkgver
	ruby extconf.rb
	make
}

package() {
	cd $srcdir/shadow-$pkgver
	make DESTDIR=$pkgdir install
}