Files
chromebrew/packages/xe.rb
Casey Strouse 0472fb694f Update xe from 0.9 to 0.10
This is a bugfix and maintenance release.

Tested as working on Samsung Chromebook Plus (aarch64).
2017-11-04 21:33:19 -07:00

23 lines
510 B
Ruby

require 'package'
class Xe < Package
description 'simple xargs and apply replacement.'
homepage 'https://github.com/chneukirchen/xe/'
version '0.10'
source_url 'https://github.com/chneukirchen/xe/archive/v0.10.tar.gz'
source_sha256 '8993cea06b2c664195df2a6124d0386d1bce7c27eb6ecbf968866bfd05cb9d7a'
binary_url ({
})
binary_sha256 ({
})
def self.build
system 'make', "PREFIX=#{CREW_PREFIX}"
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end