From bbd4a6ce9e89cc3713b3ed00d0cd02bfce321440 Mon Sep 17 00:00:00 2001 From: PktSurf Date: Sun, 3 Nov 2024 23:17:10 +0530 Subject: [PATCH] Renamed python3 as python and added mpc to base --- base/.buildlist.base | 3 +- base/mpc/smbuild | 36 +++++++++++++++++++ .../musl-find_library.patch | 0 .../python3.no-static-library.diff | 0 base/{python3 => python}/smbuild | 2 +- 5 files changed, 39 insertions(+), 2 deletions(-) create mode 100755 base/mpc/smbuild rename base/{python3 => python}/musl-find_library.patch (100%) rename base/{python3 => python}/python3.no-static-library.diff (100%) rename base/{python3 => python}/smbuild (99%) diff --git a/base/.buildlist.base b/base/.buildlist.base index 57efce0..e6a5ee1 100644 --- a/base/.buildlist.base +++ b/base/.buildlist.base @@ -71,7 +71,7 @@ pciutils openssl sqlite libpng -python3 +python libxml2 libxslt docbook @@ -128,6 +128,7 @@ e2fsprogs gptfdisk gmp mpfr +mpc libcroco libexif fribidi diff --git a/base/mpc/smbuild b/base/mpc/smbuild new file mode 100755 index 0000000..9bad140 --- /dev/null +++ b/base/mpc/smbuild @@ -0,0 +1,36 @@ +# Maintainer: PktSurf +# Generated by mksm SMLinux build file generator version 0.101 +app=mpc +version=1.3.1 +build=1sml +homepage="https://www.multiprecision.org/" +download="http://ftp.gnu.org/gnu/mpc/mpc-$version.tar.gz" +desc="Support utility for gcc" +requires="musl" + +prepbuilddir() { + mkandenterbuilddir + rm -rf $app-$version + + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version + fixbuilddirpermissions +} + +build() { + ./configure \ + --prefix=/usr \ + --enable-shared + + make + make install DESTDIR=$pkg + + cp COPYING* $pkgdocs/ + + mkfinalpkg +} + + +sha512sums=" +f41cdac7a2e59dc4841dce14f0627a4c9c1375533bb2791a3ca19872c22638fcce677b216978acc3767a4617f9de7647fcc8a005e0af4c9129fa9e4be5ecfa2f mpc-1.3.1.tar.lz +" \ No newline at end of file diff --git a/base/python3/musl-find_library.patch b/base/python/musl-find_library.patch similarity index 100% rename from base/python3/musl-find_library.patch rename to base/python/musl-find_library.patch diff --git a/base/python3/python3.no-static-library.diff b/base/python/python3.no-static-library.diff similarity index 100% rename from base/python3/python3.no-static-library.diff rename to base/python/python3.no-static-library.diff diff --git a/base/python3/smbuild b/base/python/smbuild similarity index 99% rename from base/python3/smbuild rename to base/python/smbuild index a09a28e..d41c85b 100644 --- a/base/python3/smbuild +++ b/base/python/smbuild @@ -1,5 +1,5 @@ # Maintainer: PktSurf -app=python3 +app=python version=3.9.20 build=1sml homepage="https://www.python.org/"