add zstd and ncurses packages (#14)

This commit is contained in:
Adeeb Shihadeh
2026-02-23 22:34:46 -08:00
committed by GitHub
parent dfa87aa31a
commit fd4ae72793
8 changed files with 303 additions and 0 deletions

10
zstd/zstd/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
import os
DIR = os.path.join(os.path.dirname(__file__), "install")
LIB_DIR = os.path.join(DIR, "lib")
INCLUDE_DIR = os.path.join(DIR, "include")
def smoketest():
assert os.path.isfile(os.path.join(LIB_DIR, "libzstd.a")), "libzstd.a not found"
assert os.path.isfile(os.path.join(INCLUDE_DIR, "zstd.h")), "zstd.h not found"