This commit is contained in:
svsptech 2026-04-25 02:24:31 +05:00
commit 49f2ad47e9
8 changed files with 32 additions and 0 deletions

Binary file not shown.

Binary file not shown.

13
build Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
REPO_CONF_NAME="pkg.conf"
cat > pkg.conf << EOF
sqlite3: {
url: "file://${PWD}",
enabled: yes,
priority: 100
}
EOF
pkg -o REPOS_DIR="$PWD" -o repositories_conf="$REPO_CONF_NAME" install -y sqlite3

BIN
data.pkg Normal file

Binary file not shown.

7
meta Normal file
View File

@ -0,0 +1,7 @@
version = 2;
packing_format = "tzst";
manifests = "packagesite.yaml";
data = "data";
filesite = "filesite.yaml";
manifests_archive = "packagesite";
filesite_archive = "filesite";

7
meta.conf Normal file
View File

@ -0,0 +1,7 @@
version = 2;
packing_format = "tzst";
manifests = "packagesite.yaml";
data = "data";
filesite = "filesite.yaml";
manifests_archive = "packagesite";
filesite_archive = "filesite";

BIN
packagesite.pkg Normal file

Binary file not shown.

5
pkg.conf Normal file
View File

@ -0,0 +1,5 @@
sqlite3: {
url: "file:///calista/sqlite3",
enabled: yes,
priority: 100
}