forked from semios/semios-packages
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bae4acc42 |
@@ -1,37 +0,0 @@
|
||||
from lib import cpp
|
||||
from lib.make import *
|
||||
|
||||
|
||||
version("1.0.16")
|
||||
description("The Free Implementation of the Unicode Bidirectional Algorithm.")
|
||||
maintainer("sisungo <[email protected]>")
|
||||
source_url("https://github.com/fribidi/fribidi/releases/download/v1.0.16/fribidi-1.0.16.tar.xz")
|
||||
|
||||
builddep("shortcut/c")
|
||||
builddep("shortcut/autotools")
|
||||
|
||||
|
||||
def build():
|
||||
cpp.configure([
|
||||
f"--libdir={get_prefix('libfribidi')}/lib",
|
||||
f"--bindir={get_prefix('fribidi')}/bin",
|
||||
f"--includedir={get_prefix('libfribidi-dev')}/include",
|
||||
"--disable-deprecated",
|
||||
])
|
||||
cpp.make()
|
||||
cpp.make_install()
|
||||
|
||||
on_build(build)
|
||||
|
||||
|
||||
package("libfribidi")
|
||||
dep("semi-libc @same-arch")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("fribidi")
|
||||
dep("libfribidi (same)")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("libfribidi-dev")
|
||||
dep("libfribidi (same)")
|
||||
cpp.use_auto_pack(["dev"])
|
||||
@@ -0,0 +1,22 @@
|
||||
from lib.make import *
|
||||
from lib import python
|
||||
|
||||
|
||||
python.version("3.0")
|
||||
description("C parser in Python")
|
||||
maintainer("sisungo <[email protected]>")
|
||||
source_url("https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz")
|
||||
|
||||
python.builddep("$shortcut")
|
||||
|
||||
|
||||
def build():
|
||||
python.build()
|
||||
python.install()
|
||||
|
||||
on_build(build)
|
||||
|
||||
|
||||
package("pycparser.py")
|
||||
python.dep("python")
|
||||
python.use_auto_pack()
|
||||
Reference in New Issue
Block a user