22 lines
331 B
Python
22 lines
331 B
Python
from lib.cpp import *
|
|
from lib.make import *
|
|
|
|
source_url("https://gitea.semilabs.org/semios/semi-libc/archive/v1.2.5.tar.gz")
|
|
version("1.2.5")
|
|
|
|
|
|
def build():
|
|
configure(["--prefix=/"])
|
|
make()
|
|
make_install()
|
|
|
|
|
|
on_build(build)
|
|
|
|
|
|
package("semi-libc")
|
|
use_auto_pack(["lib"])
|
|
|
|
package("semi-libc-dev")
|
|
use_auto_pack(["dev"])
|