mirror of
https://github.com/jordansissel/fpm
synced 2025-08-26 03:34:35 +02:00
28 lines
811 B
Ruby
28 lines
811 B
Ruby
Gem::Specification.new do |spec|
|
|
files = []
|
|
dirs = %w{lib bin templates}
|
|
dirs.each do |dir|
|
|
files += Dir["#{dir}/**/*"]
|
|
end
|
|
|
|
files << "LICENSE"
|
|
files << "CONTRIBUTORS"
|
|
files << "CHANGELIST"
|
|
|
|
spec.name = "fpm"
|
|
spec.version = "0.3.8"
|
|
spec.summary = "fpm - package building and mangling"
|
|
spec.description = "Convert directories, rpms, python eggs, rubygems, and more to rpms, debs, solaris packages and more. Win at package management without wasting pointless hours debugging bad rpm specs!"
|
|
spec.add_dependency("json")
|
|
spec.files = files
|
|
spec.require_paths << "lib"
|
|
spec.bindir = "bin"
|
|
spec.executables << "fpm"
|
|
spec.executables << "fpm-npm"
|
|
|
|
spec.author = "Jordan Sissel"
|
|
spec.email = "jls@semicomplete.com"
|
|
spec.homepage = "https://github.com/jordansissel/fpm"
|
|
end
|
|
|