Added argon2, boost, fmt, fuse3, libqalculate and qrencode to base
Upgraded base/openssl Fixed stuff in base/polkit build file Added libdazzle and libportal in gtk Updated gtk section build list
This commit is contained in:
parent
b34e02bfdb
commit
1b56766367
14 changed files with 300 additions and 8 deletions
|
@ -312,7 +312,7 @@ clang
|
|||
rust
|
||||
lld
|
||||
sccache
|
||||
nodejs
|
||||
libplist
|
||||
iniparser
|
||||
ndctl
|
||||
dmraid
|
||||
|
@ -323,3 +323,9 @@ libblockdev
|
|||
mozjs
|
||||
polkit
|
||||
udisks
|
||||
nodejs
|
||||
fmt
|
||||
argon2
|
||||
qrencode
|
||||
libqalculate
|
||||
fuse3
|
||||
|
|
27
base/argon2/argon2.SMBuild
Executable file
27
base/argon2/argon2.SMBuild
Executable file
|
@ -0,0 +1,27 @@
|
|||
app=argon2
|
||||
version=20190702
|
||||
build=1sml
|
||||
homepage="https://github.com/P-H-C/phc-winner-argon2"
|
||||
download="https://github.com/P-H-C/phc-winner-argon2/archive/refs/tags/20190702.tar.gz"
|
||||
desc="A password hashing function written in C"
|
||||
requires="musl"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf phc-winner-$app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd phc-winner-$app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
make OPTTARGET='none' LIBRARY_REL='lib' PREFIX="/"
|
||||
make OPTTARGET='none' LIBRARY_REL='lib' PREFIX="/" install DESTDIR=$pkg
|
||||
|
||||
cp LICENSE $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
0a4cb89e8e63399f7df069e2862ccd05308b7652bf4ab74372842f66bcc60776399e0eaf979a7b7e31436b5e6913fe5b0a6949549d8c82ebd06e0629b106e85f argon2-20190702.tar.gz
|
||||
"
|
|
@ -1,16 +1,18 @@
|
|||
app=boost
|
||||
version=1_69_0
|
||||
sversion=1_69_0
|
||||
version="$(echo $sversion | sed 's@_@.@g')"
|
||||
build=1sml
|
||||
homepage='https://www.boost.org/'
|
||||
download='https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.bz2'
|
||||
requires="bzip2 zlib findutils python3 icu xz"
|
||||
desc="Huge collection of free peer-reviewed portable C++ source libraries"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf "$app"_"$version"
|
||||
rm -rf "$app"_"$sversion"
|
||||
|
||||
tar xf $srcdir/"$app"_"$version".tar.?z*
|
||||
cd "$app"_"$version"
|
||||
tar xf $srcdir/"$app"_"$sversion".tar.?z*
|
||||
cd "$app"_"$sversion"
|
||||
chown -R root.root .
|
||||
|
||||
applypatch $srcdir/boost-execinfo.patch
|
||||
|
|
35
base/fmt/fmt.SMBuild
Executable file
35
base/fmt/fmt.SMBuild
Executable file
|
@ -0,0 +1,35 @@
|
|||
app=fmt
|
||||
version=8.1.0
|
||||
build=1sml
|
||||
homepage="https://github.com/fmtlib/fmt"
|
||||
download="https://github.com/fmtlib/fmt/archive/refs/tags/8.1.0.tar.gz"
|
||||
desc="Formatting library for C++"
|
||||
requires="musl gcc-libs"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
mkdir smbuild && cd smbuild
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX="" \
|
||||
-DCMAKE_INSTALL_LIBDIR="/lib" \
|
||||
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-Wno-dev
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
install -m 644 ../LICENSE.rst $pkgdocs/LICENSE
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
63d052c6ba7ca53978ca42b8a72d8548eabae04064832bb79010f44f0276b31d0a2fc02d99b09a350ce514931afc387d5fe13c121344cad6d87fe4d504810d9f fmt-8.1.0.tar.gz
|
||||
"
|
24
base/fuse3/doinst.sh
Normal file
24
base/fuse3/doinst.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
|
||||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
# If there's no config file by that name, mv it over:
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
# toss the redundant copy
|
||||
rm $NEW
|
||||
fi
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
# Keep same perms on rc.fuse3.new:
|
||||
if [ -e etc/rc.d/rc.fuse3 ]; then
|
||||
cp -a etc/rc.d/rc.fuse3 etc/rc.d/rc.fuse3.new.incoming
|
||||
cat etc/rc.d/rc.fuse3.new > etc/rc.d/rc.fuse3.new.incoming
|
||||
mv etc/rc.d/rc.fuse3.new.incoming etc/rc.d/rc.fuse3.new
|
||||
fi
|
||||
|
||||
config etc/rc.d/rc.fuse3.new
|
||||
config etc/fuse.conf.new
|
36
base/fuse3/fuse3.SMBuild
Executable file
36
base/fuse3/fuse3.SMBuild
Executable file
|
@ -0,0 +1,36 @@
|
|||
app=fuse3
|
||||
version=3.10.5
|
||||
build=1sml
|
||||
homepage="https://github.com/libfuse/libfuse"
|
||||
download="https://github.com/libfuse/libfuse/archive/refs/tags/fuse-3.10.5.tar.gz"
|
||||
desc="Filesystem in Userspace v3"
|
||||
requires="udev"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf fuse-$version
|
||||
|
||||
tar xf $srcdir/fuse-$version.tar.?z*
|
||||
cd fuse-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
mkdir -p smbuild && cd smbuild
|
||||
meson .. \
|
||||
--prefix="/" \
|
||||
--sbindir=bin \
|
||||
-Dexamples=false
|
||||
|
||||
ninja
|
||||
DESTDIR="$pkg" ninja install
|
||||
|
||||
# We don't need the fuse init script
|
||||
rm -rf $pkg/etc/init.d
|
||||
|
||||
cp ../LICENSE $pkgdocs
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
d4c397ae6522cc841099e76bb1e11493555e1f2767169cd6980aa64eed6f41a27f19d1282d6f521e1602c533f58ef90af5b1b4bdf86dc032d7316cceba57ead1 fuse-3.10.5.tar.lz
|
||||
"
|
32
base/libplist/libplist.SMBuild
Executable file
32
base/libplist/libplist.SMBuild
Executable file
|
@ -0,0 +1,32 @@
|
|||
app=libplist
|
||||
version=2.2.0
|
||||
build=1sml
|
||||
homepage="http://www.libimobiledevice.org/"
|
||||
download="https://github.com/libimobiledevice/libplist/archive/refs/tags/2.2.0.tar.gz"
|
||||
desc="A library for Apple Binary and XML Property Lists"
|
||||
requires="glib"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp COPYING* $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
764ceea2817933c5299248c64ffb3f96145f97107f71e328f3877e3451ca93dbd528ff27d57b0d9ccd13e86f5c3818baeac8b82068d9a4b906a6fdd2ec4cab4a libplist-2.2.0.tar.lz
|
||||
"
|
32
base/libqalculate/libqalculate.SMBuild
Executable file
32
base/libqalculate/libqalculate.SMBuild
Executable file
|
@ -0,0 +1,32 @@
|
|||
app=libqalculate
|
||||
version=4.0.0
|
||||
build=1sml
|
||||
homepage="https://github.com/Qalculate/libqalculate/releases/download/v4.0.0/libqalculate-4.0.0.tar.gz"
|
||||
download="https://github.com/Qalculate/libqalculate/releases/download/v4.0.0/libqalculate-4.0.0.tar.gz"
|
||||
desc="Provides functions for a multi-purpose calculator"
|
||||
requires="libxml2 curl"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
|
||||
sha512sums="
|
||||
959204afa765e87c1b5ac2547ad15df0610ff6bb2a01a0fcb149b6dbe44021e29903e99c568999604a66b32d98a0cff86a4a4934c6b325436fab4600718a9b7b libqalculate-4.0.0.tar.gz
|
||||
"
|
|
@ -2,7 +2,7 @@ app=openssl
|
|||
version=1.1.1p
|
||||
build=1sml
|
||||
homepage='https://www.openssl.org/'
|
||||
download='https://www.openssl.org/source/openssl-1.1.1o.tar.gz'
|
||||
download='https://www.openssl.org/source/openssl-1.1.1p.tar.gz'
|
||||
desc="Commercial-grade, full-featured crypto library from OpenSSL Project that implements TLS and SSLv3"
|
||||
requires="perl"
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ build() {
|
|||
|
||||
autoreconf -vif
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--prefix="/" \
|
||||
--sysconfdir=/etc \
|
||||
--disable-man-pages \
|
||||
--disable-static \
|
||||
|
@ -45,4 +45,4 @@ sha512sums="
|
|||
db072769439d5e17d0eed681e7b94251b77828c1474b40fe40b94293903a64333e7fa17515a3270648691f04a1374d8b404405ead6abf292a8eb8483164adc46 polkit-0.120.tar.gz
|
||||
0c47751e928a91ce3a477a330ef38b8f6f003b515c94e7fb9842e6f2043be43d749ab7390cc1dbcf1fa6128b62cf0eab353d4f8855d68e595bc53777512f4562 make-innetgr-optional.patch
|
||||
2606d4ff8ae00be2416da965f6c00c9b2c30ff928b765d9a744f9470805329192949bbca43b42741709e6fb3672c8d6f0bf8b4c97603b4f022d16ca243ab99a2 polkit-0.120-security_fix-1.patch
|
||||
"
|
||||
"
|
||||
|
|
31
base/qrencode/qrencode.SMBuild
Executable file
31
base/qrencode/qrencode.SMBuild
Executable file
|
@ -0,0 +1,31 @@
|
|||
app=qrencode
|
||||
version=4.1.1
|
||||
build=1sml
|
||||
homepage="https://fukuchi.org/works/qrencode/"
|
||||
download="https://fukuchi.org/works/qrencode/qrencode-4.1.1.tar.bz2"
|
||||
desc="C library for encoding data in a QR Code symbol"
|
||||
requires="libpng"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
./configure \
|
||||
--prefix="" \
|
||||
--sysconfdir=/etc
|
||||
|
||||
make
|
||||
make install DESTDIR=$pkg
|
||||
|
||||
cp COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
981b3242c213e1b40ac88711912dd8c27ea11f3437d1a04b6b226499a6e991a8f0b3b10f818bcc104812192a1dac4ce05f16ecd847a50cb03d4859b84bad89b8 qrencode-4.1.1.tar.bz2
|
||||
"
|
|
@ -60,3 +60,5 @@ libgphoto2
|
|||
py3cairo
|
||||
pygobject3
|
||||
libmanette
|
||||
libportal
|
||||
libdazzle
|
||||
|
|
31
gtk/libdazzle/libdazzle.SMBuild
Executable file
31
gtk/libdazzle/libdazzle.SMBuild
Executable file
|
@ -0,0 +1,31 @@
|
|||
app=libdazzle
|
||||
version=3.42.0
|
||||
build=1sml
|
||||
homepage="https://gitlab.gnome.org/GNOME/libdazzle"
|
||||
download="https://gitlab.gnome.org/GNOME/libdazzle/-/archive/3.42.0/libdazzle-3.42.0.tar.bz2"
|
||||
desc="GNOME library for implementing fancy features in applications"
|
||||
requires="gtk3"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
mkdir smbuild && cd smbuild
|
||||
meson .. \
|
||||
--prefix="/"
|
||||
|
||||
ninja
|
||||
DESTDIR="$pkg" ninja install
|
||||
|
||||
cp ../COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
dad6ce195a32ed5a0415e44ff9e1edcbb9a2a760460f9ebc31d5b4e6183bf1d7ce04acfcb02ddacde581065a3472310d584cb15587ba0e449d3cdcfc9328d898 libdazzle-3.42.0.tar.bz2
|
||||
"
|
34
gtk/libportal/libportal.SMBuild
Executable file
34
gtk/libportal/libportal.SMBuild
Executable file
|
@ -0,0 +1,34 @@
|
|||
app=libportal
|
||||
version=0.5
|
||||
build=1sml
|
||||
homepage="https://github.com/flatpak/libportal/"
|
||||
download="https://github.com/flatpak/libportal/archive/refs/tags/0.5.tar.gz"
|
||||
desc="Flatpak portal API"
|
||||
requires="gtk3"
|
||||
|
||||
build() {
|
||||
mkandenterbuilddir
|
||||
rm -rf $app-$version
|
||||
|
||||
tar xf $srcdir/$app-$version.tar.?z*
|
||||
cd $app-$version
|
||||
fixbuilddirpermissions
|
||||
|
||||
mkdir smbuild && cd smbuild
|
||||
meson .. \
|
||||
--prefix="/" \
|
||||
-Dbackends="gtk3" \
|
||||
-Ddocs="false"
|
||||
|
||||
ninja
|
||||
DESTDIR="$pkg" ninja install
|
||||
|
||||
cp ../COPYING $pkgdocs/
|
||||
|
||||
mkfinalpkg
|
||||
}
|
||||
|
||||
|
||||
sha512sums="
|
||||
405cb8d75ba364145be57d52f460b364d62e742234bfd26a81816e9e0d6586ade13f5c01afec65a20c92408a3449832ad20e47ecea26a6375f55c878b2315f00 libportal-0.5.tar.gz
|
||||
"
|
Loading…
Reference in a new issue