mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
gdk-pixbuf 2
This commit is contained in:
22
packages/py3_smartypants.rb
Normal file
22
packages/py3_smartypants.rb
Normal file
@@ -0,0 +1,22 @@
|
||||
require 'package'
|
||||
|
||||
class Py3_smartypants < Package
|
||||
description 'Smartypants translates plain ASCII punctuation characters into "smart" typographic punctuation HTML entities.'
|
||||
homepage 'https://github.com/leohemsted/smartypants.py/'
|
||||
@_ver = '2.0.1'
|
||||
version @_ver
|
||||
license 'BSD'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/leohemsted/smartypants.py.git'
|
||||
git_hashtag 'v' + @_ver
|
||||
|
||||
depends_on 'py3_setuptools' => :build
|
||||
|
||||
def self.build
|
||||
system "python3 setup.py build #{PY3_SETUP_BUILD_OPTIONS}"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "python3 setup.py install #{PY_SETUP_INSTALL_OPTIONS}"
|
||||
end
|
||||
end
|
||||
22
packages/py3_typogrify.rb
Normal file
22
packages/py3_typogrify.rb
Normal file
@@ -0,0 +1,22 @@
|
||||
require 'package'
|
||||
|
||||
class Py3_typogrify < Package
|
||||
description 'Typogrify provides filters to enhance web typography.'
|
||||
homepage 'https://python-markdown.github.io/'
|
||||
@_ver = '2.0.7'
|
||||
version @_ver
|
||||
license 'BSD'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/mintchaos/typogrify.git'
|
||||
git_hashtag @_ver
|
||||
|
||||
depends_on 'py3_setuptools' => :build
|
||||
|
||||
def self.build
|
||||
system "python3 setup.py build #{PY3_SETUP_BUILD_OPTIONS}"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "python3 setup.py install #{PY_SETUP_INSTALL_OPTIONS}"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user