new: migrated more packages
This commit is contained in:
src
libpipeline
libpsl
libssh2
libtasn1
libtirpc
libtool
libunistring
libxcrypt
libxml2
libxslt
linux-pam
linux
3
src/libxslt/.gitignore
vendored
Normal file
3
src/libxslt/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libxslt/changes.md
Normal file
2
src/libxslt/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.1.42
|
||||
First version
|
29
src/libxslt/pkg.sh
Normal file
29
src/libxslt/pkg.sh
Normal file
@ -0,0 +1,29 @@
|
||||
# general info
|
||||
NAME="libxslt"
|
||||
DESC="XSLT processor"
|
||||
VERSION="1.1.42"
|
||||
|
||||
# required files
|
||||
FILES=("https://download.gnome.org/sources/libxslt/${VERSION%.*}/libxslt-${VERSION}.tar.xz")
|
||||
HASHES=("85ca62cac0d41fc77d3f6033da9df6fd73d20ea2fc18b0a3609ffb4110e1baeb")
|
||||
|
||||
# install and build depends
|
||||
DEPENDS=(
|
||||
"bash" "glibc" "libgcrypt"
|
||||
"libxml2" "xz" "python3"
|
||||
)
|
||||
BUILD=()
|
||||
|
||||
build(){
|
||||
tar xf "${NAME}-${VERSION}.tar.xz"
|
||||
cd "${NAME}-${VERSION}"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-static \
|
||||
--docdir="/usr/share/doc/libxslt-${VERSION}" \
|
||||
PYTHON=/usr/bin/python3
|
||||
make
|
||||
make DESTDIR="${ROOTDIR}" install
|
||||
|
||||
cd .. && rm -r "${NAME}-${VERSION}"
|
||||
}
|
Reference in New Issue
Block a user