diff options
author | root <root@rshg054.dnsready.net> | 2011-09-07 15:26:04 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-07 15:26:04 +0000 |
commit | 9a1a8d77ee00e49dfeef44d74b1e40a831332383 (patch) | |
tree | 8b80a03609eba8a12cbb0c48b1a31266c6bdc540 /social/ruby-shadow/PKGBUILD | |
parent | fe769389426a6aa5a2878bf7dcfc6144717e1e93 (diff) |
Wed Sep 7 15:26:04 UTC 2011
Diffstat (limited to 'social/ruby-shadow/PKGBUILD')
-rw-r--r-- | social/ruby-shadow/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/social/ruby-shadow/PKGBUILD b/social/ruby-shadow/PKGBUILD new file mode 100644 index 000000000..ec243aaea --- /dev/null +++ b/social/ruby-shadow/PKGBUILD @@ -0,0 +1,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 +} |