-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalpm.gemspec
More file actions
19 lines (19 loc) · 764 Bytes
/
alpm.gemspec
File metadata and controls
19 lines (19 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- ruby -*-
Gem::Specification.new do |spec|
spec.name = 'alpm'
spec.version = '0.01'
spec.author = 'Justin Davis'
spec.email = 'jrcd83@gmail.com'
spec.summary = %Q{Interface to libalpm, ArchLinux's package manager library} #'
spec.homepage = 'https://github.com/juster/ruby-alpm'
spec.files = Dir.glob( 'ext/*.[ch]' )
spec.test_files = Dir.glob( 'tests/*.rb' )
spec.extensions = 'ext/extconf.rb'
spec.description = <<'END_DESC'
Alpm is an acronym that stands for ArchLinux Package Manager.
libalpm was separated from pacman, the Archlinux package
manager program, in an attempt to be more modular. The lower
level functions of pacman are available in libalpm and you
can access them easily in ruby with this gem.
END_DESC
end