Commit 4ba0fab9 authored by Michał Siwek's avatar Michał Siwek Committed by GitHub

Merge pull request #170 from ghost/master

add packages/yasm.rb
parents 94b1b1aa d0a00442
require 'package'
class Yasm < Package
version '1.3.0'
source_url 'http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz'
source_sha1 'b7574e9f0826bedef975d64d3825f75fbaeef55e'
def self.build
system './configure --prefix=/usr/local'
system 'make'
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} make install"
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