new: migrate more packages

This commit is contained in:
ngn
2024-07-24 22:09:01 +03:00
parent 07d499fef5
commit a7dfd49ab5
36 changed files with 380 additions and 0 deletions

3
src/libksba/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libksba/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.6.7
First version

23
src/libksba/pkg.sh Normal file
View File

@ -0,0 +1,23 @@
# general info
NAME="libksba"
DESC="Library to make the tasks of working with X.509 certificates"
VERSION="1.6.7"
# required files
FILES=("https://www.gnupg.org/ftp/gcrypt/libksba/libksba-${VERSION}.tar.bz2")
HASHES=("cf72510b8ebb4eb6693eef765749d83677a03c79291a311040a5bfd79baab763")
# install and build depends
DEPENDS=("bash" "glibc" "libgpg-error")
BUILD=()
build(){
tar xf "${NAME}-${VERSION}.tar.bz2"
cd "${NAME}-${VERSION}"
./configure --prefix=/usr
make
make DESTDIR="${ROOTDIR}" install
cd .. && rm -r "${NAME}-${VERSION}"
}