Added base/{pyelftools,pax-utils} to base
Temporarily removed base/gcc-libs Added rpi-userland to base buildlist Updated base buildlist to reflect above three changes
This commit is contained in:
parent
c05034b154
commit
308652e8f6
5 changed files with 65 additions and 28 deletions
|
@ -84,6 +84,8 @@ python-markupsafe
|
||||||
python-mako
|
python-mako
|
||||||
python-six
|
python-six
|
||||||
python-cheetah
|
python-cheetah
|
||||||
|
pyelftools
|
||||||
|
pax-utils
|
||||||
gettext
|
gettext
|
||||||
iso-codes
|
iso-codes
|
||||||
libtool
|
libtool
|
||||||
|
@ -323,3 +325,4 @@ argon2
|
||||||
qrencode
|
qrencode
|
||||||
libqalculate
|
libqalculate
|
||||||
protobuf
|
protobuf
|
||||||
|
rpi-userland
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
app=gcc-libs
|
|
||||||
version=9.3.0
|
|
||||||
build=1sml
|
|
||||||
homepage="https://gcc.gnu.org/"
|
|
||||||
download="https://gcc.gnu.org/"
|
|
||||||
desc="Separate GCC and libstdc++ libraries"
|
|
||||||
requires="musl"
|
|
||||||
|
|
||||||
build() {
|
|
||||||
|
|
||||||
mkandenterbuilddir
|
|
||||||
rm -rf $app-$version-$ARCH
|
|
||||||
|
|
||||||
tar xf $srcdir/$app-$version-$arch.tar.?z
|
|
||||||
cd $app-$version-$arch
|
|
||||||
|
|
||||||
mkdir -p $pkg/lib
|
|
||||||
cp -av * $pkg/lib/
|
|
||||||
|
|
||||||
mkfinalpkg
|
|
||||||
}
|
|
||||||
|
|
||||||
sha512sums="
|
|
||||||
9a098fc7df9491f73d3f58474390018ad3120a36b4122b47696d3ea60c4095fcdb7d002809b1b2e7eefbae828271f85c6eba298dc16a0b9605b4601368f0c4af gcc-libs-9.3.0-aarch64.tar.lz
|
|
||||||
e3dd69faf7722270e096f093633d116d1c707d62c267e4cb5a18128f55f3a57c1572d34ed51d901fbc0da969639cffd4efd19a591f3625117ca91c7c6c82a622 gcc-libs.aarch64.tar.lz
|
|
||||||
2fc2c35ab88f97e723ea905c20fd749eacc626195fd4b4361f691aa3219ec3f88d3628a419db7fb827fa03fd54675bea2bbd1190cee5a3d89b28ab4949fcb15e gcc-libs.x86_64.tar.lz
|
|
||||||
"
|
|
|
@ -6,7 +6,6 @@ homepage="http://llvm.org/"
|
||||||
download="https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/llvm-$version.src.tar.xz"
|
download="https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/llvm-$version.src.tar.xz"
|
||||||
desc="LLVM compiler toolkit"
|
desc="LLVM compiler toolkit"
|
||||||
requires="libffi libxml2 perl"
|
requires="libffi libxml2 perl"
|
||||||
#preservestaticlibs=1
|
|
||||||
|
|
||||||
prepbuilddir() {
|
prepbuilddir() {
|
||||||
mkandenterbuilddir
|
mkandenterbuilddir
|
||||||
|
|
34
base/pax-utils/pax-utils.SMBuild
Executable file
34
base/pax-utils/pax-utils.SMBuild
Executable file
|
@ -0,0 +1,34 @@
|
||||||
|
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||||
|
app=pax-utils
|
||||||
|
version=1.3.7
|
||||||
|
build=1sml
|
||||||
|
homepage="https://github.com/gentoo/pax-utils"
|
||||||
|
download="https://github.com/gentoo/pax-utils/archive/refs/tags/v$version.tar.gz"
|
||||||
|
desc="ELF utilities for performing security checks on files"
|
||||||
|
requires="pyelftools"
|
||||||
|
|
||||||
|
prepbuilddir() {
|
||||||
|
mkandenterbuilddir
|
||||||
|
rm -rf $app-$version
|
||||||
|
|
||||||
|
tar xf $srcdir/$app-$version.tar.?z*
|
||||||
|
cd $app-$version
|
||||||
|
fixbuilddirpermissions
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir smbuild && cd smbuild
|
||||||
|
meson .. \
|
||||||
|
--prefix="/"
|
||||||
|
|
||||||
|
ninja
|
||||||
|
DESTDIR="$pkg" ninja install
|
||||||
|
|
||||||
|
cp ../COPYING $pkgdocs/
|
||||||
|
|
||||||
|
mkfinalpkg
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="
|
||||||
|
64d61169cebf013401de442bbf2deae4b25eb3d07c90643775ea6443005b16783f41ceb41f398850507ed24c4a2d2c3f8552e047a574d884fbf314145bb8e6f9 pax-utils-1.3.7.tar.lz
|
||||||
|
"
|
28
base/pyelftools/pyelftools.SMBuild
Executable file
28
base/pyelftools/pyelftools.SMBuild
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
||||||
|
app=pyelftools
|
||||||
|
version=0.29
|
||||||
|
build=1sml
|
||||||
|
homepage="https://github.com/eliben/pyelftools"
|
||||||
|
download="https://github.com/eliben/pyelftools/archive/refs/tags/v$version.tar.gz"
|
||||||
|
desc="Python library for parsing ELF files"
|
||||||
|
requires="python3"
|
||||||
|
|
||||||
|
prepbuilddir() {
|
||||||
|
mkandenterbuilddir
|
||||||
|
rm -rf $app-$version
|
||||||
|
|
||||||
|
tar xf $srcdir/$app-$version.tar.?z*
|
||||||
|
cd $app-$version
|
||||||
|
fixbuilddirpermissions
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
python setup.py install --prefix="" --root=$pkg
|
||||||
|
cp LICENSE $pkgdocs/
|
||||||
|
|
||||||
|
mkfinalpkg
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="
|
||||||
|
327ce6facc4714dc9f2270e8057d75ef9a3a41133fb75d15cae424d7dda127973ce1c33f8a9aa754ffc2113c597a7931804ca71738d155b79fd0b376e5bde664 pyelftools-0.29.tar.lz
|
||||||
|
"
|
Loading…
Reference in a new issue