Commit e4b97c63 authored by Casey Strouse's avatar Casey Strouse

Add acl (2.2.52) package

The acl package contains utilities to administer Access Control Lists, which
are used to define more fine-grained discretionary access rights for
files and directories.

Tested as working properly on Samsung XE50013-K01US.
parent c44dd0c6
require 'package'
class Acl < Package
version '2.2.52'
source_url 'http://download.savannah.gnu.org/releases/acl/acl-2.2.52.src.tar.gz'
source_sha1 '537dddc0ee7b6aa67960a3de2d36f1e2ff2059d9'
depends_on "attr"
def self.build
system "./configure --prefix=/usr/local --libexecdir=/usr/local/lib --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