gdk-pixbuf 2

This commit is contained in:
saltedcoffii
2021-05-04 13:11:10 -04:00
parent 179662969f
commit dea2ab8ce3
2 changed files with 44 additions and 0 deletions

View 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
View 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