Commit 9b5e4665 authored by Casey Strouse's avatar Casey Strouse

Add attr (2.4.47) package

The attr package contains utilities to administer the extended
attributes on filesystem objects.

Tested as working properly on Samsung XE50013-K01US.
parent c44dd0c6
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