Commit c45aff23 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #422 from cstrouse/add-attr

Add attr (2.4.47) package
parents fae543f1 9b5e4665
require 'package'
class Attr < Package
version '2.4.47'
source_url 'http://download.savannah.gnu.org/releases/attr/attr-2.4.47.src.tar.gz'
source_sha1 '5060f0062baee6439f41a433325b8b3671f8d2d8'
def self.build
system "./configure --prefix=/usr/local --disable-static"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install-dev"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install-lib"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment