forked from semios/semios-packages
Compare commits
8
Commits
libarchive
...
diffutils
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41edafea75 | ||
|
|
164d9f9006 | ||
|
|
2f204dc5ff | ||
|
|
6f46eb5bc9 | ||
|
|
b084ee0c6b | ||
|
|
fc4a14281c | ||
|
|
86139f1ddc | ||
|
|
95483cedaf |
@@ -16,10 +16,24 @@ def build():
|
||||
|
||||
on_build(build)
|
||||
|
||||
package("aws-lc")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("aws-lc-bin")
|
||||
def pack_libcrypto(composer):
|
||||
composer.makedir("lib")
|
||||
composer.addfile("lib/libcrypto.so", "lib/libcrypto.so")
|
||||
|
||||
|
||||
def pack_libssl(composer):
|
||||
composer.makedir("lib")
|
||||
composer.addfile("lib/libssl.so", "lib/libssl.so")
|
||||
|
||||
|
||||
package("aws-lc-libcrypto")
|
||||
on_pack(pack_libcrypto)
|
||||
|
||||
package("aws-lc-libssl")
|
||||
on_pack(pack_libssl)
|
||||
|
||||
package("aws-lc-tools")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("aws-lc-dev")
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
import lib.rust as rust
|
||||
from lib.make import *
|
||||
|
||||
version("0.5.0")
|
||||
source_url("https://github.com/uutils/diffutils/archive/refs/tags/v0.5.0.tar.gz")
|
||||
|
||||
|
||||
def build():
|
||||
rust.build()
|
||||
|
||||
|
||||
on_build(build)
|
||||
|
||||
package("diffutils")
|
||||
rust.use_auto_pack(["bin"])
|
||||
@@ -18,7 +18,7 @@ on_build(build)
|
||||
package("libarchive")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("libarchive-bin")
|
||||
package("libarchive-tools")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("libarchive-dev")
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
from lib.make import *
|
||||
|
||||
version("2.0")
|
||||
source_url("https://github.com/antirez/linenoise/archive/refs/tags/2.0.tar.gz")
|
||||
|
||||
on_build(lambda: None)
|
||||
|
||||
|
||||
def pack_dev(composer):
|
||||
composer.addfile("linenoise.c", "linenoise.c")
|
||||
composer.addfile("linenoise.h", "linenoise.h")
|
||||
composer.addfile("Makefile", "Makefile")
|
||||
|
||||
|
||||
package("linenoise-dev")
|
||||
arch_any()
|
||||
on_pack(pack_dev)
|
||||
@@ -0,0 +1,30 @@
|
||||
import lib.cpp as cpp
|
||||
from lib.make import *
|
||||
|
||||
version("3.53.2")
|
||||
source_url("https://sqlite.org/2026/sqlite-autoconf-3530200.tar.gz")
|
||||
|
||||
|
||||
def build():
|
||||
cpp.configure(
|
||||
[
|
||||
"--prefix=/",
|
||||
"--all",
|
||||
"--with-linenoise=/pkg/linenoise-dev=2.0@any",
|
||||
"--icu-collations",
|
||||
]
|
||||
)
|
||||
cpp.make()
|
||||
cpp.make_install()
|
||||
|
||||
|
||||
on_build(build)
|
||||
|
||||
package("libsqlite")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("sqlite")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("libsqlite-dev")
|
||||
cpp.use_auto_pack(["dev"])
|
||||
@@ -16,11 +16,11 @@ def build():
|
||||
|
||||
on_build(build)
|
||||
|
||||
package("zlib-ng")
|
||||
package("libz-ng")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("zlib-ng-bin")
|
||||
package("zlib-ng-tools")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("zlib-ng-dev")
|
||||
package("libz-ng-dev")
|
||||
cpp.use_auto_pack(["dev"])
|
||||
|
||||
@@ -17,11 +17,11 @@ def build():
|
||||
|
||||
on_build(build)
|
||||
|
||||
package("zstd")
|
||||
package("libzstd")
|
||||
cpp.use_auto_pack(["lib"])
|
||||
|
||||
package("zstd-bin")
|
||||
package("zstd")
|
||||
cpp.use_auto_pack(["bin"])
|
||||
|
||||
package("zstd-dev")
|
||||
package("libzstd-dev")
|
||||
cpp.use_auto_pack(["dev"])
|
||||
|
||||
Reference in New Issue
Block a user