mirror of
https://linux.maple.camp/git/ahill/maplelinux-bootstrap.git
synced 2026-02-11 10:13:35 +00:00
Fixed LibreSSL and built bzip2, Zlib, and CMake
This commit is contained in:
32
sources/bzip2/bzip2.spec
Normal file
32
sources/bzip2/bzip2.spec
Normal file
@@ -0,0 +1,32 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269"
|
||||
SRC_NAME="bzip2"
|
||||
SRC_URL="https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz"
|
||||
SRC_VERSION="1.0.8"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd bzip2-*/
|
||||
# NOTE: bzip2 likes to hard-code CC, which won't work because gcc doesn't
|
||||
# exist here. ~ahill
|
||||
# NOTE: -D_FILE_OFFSET_BITS is present because it's present in the Makefile
|
||||
# and we're completely overriding its defaults. I don't actually know
|
||||
# if this will cause any issues if it's missing. ~ahill
|
||||
make -O -j $TT_PROCS CC=$CC CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64" PREFIX=/
|
||||
# NOTE: I'm not sure if it's possible to build bzip2 without building a
|
||||
# static library, since the executable links with the static library
|
||||
# and the shared library is isolated in a separate Makefile. ~ahill
|
||||
make -O -f Makefile-libbz2_so -j $TT_PROCS CC=$CC CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64" PREFIX=/
|
||||
}
|
||||
|
||||
clean() {
|
||||
rm -rf bzip2-*/
|
||||
}
|
||||
|
||||
package() {
|
||||
cd bzip2-*/
|
||||
make -O -j $TT_PROCS install PREFIX=$TT_INSTALLDIR
|
||||
# NOTE: The second Makefile doesn't have an "install" target, so we just
|
||||
# toss the shared object into /lib and call it a day! ~ahill
|
||||
cp libbz2.so* $TT_INSTALLDIR/lib/
|
||||
}
|
||||
30
sources/cmake/cmake.spec
Normal file
30
sources/cmake/cmake.spec
Normal file
@@ -0,0 +1,30 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="4104e94657d247c811cb29985405a360b78130b5d51e7f6daceb2447830bd579"
|
||||
SRC_NAME="cmake"
|
||||
SRC_URL="https://github.com/Kitware/CMake/releases/download/v4.2.0/cmake-4.2.0.tar.gz"
|
||||
SRC_VERSION="4.2.0"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd cmake-*/
|
||||
# NOTE: CMake's bootstrap script is strange because *everything* is located
|
||||
# under the prefix, whether you like it or not. We're making use of
|
||||
# /usr/bin this way, which is something I would like to avoid. ~ahill
|
||||
./bootstrap \
|
||||
--parallel=$TT_PROCS \
|
||||
--prefix=/usr \
|
||||
--system-bzip2 \
|
||||
--system-libarchive \
|
||||
--system-liblzma \
|
||||
--system-zlib
|
||||
make -O -j $TT_PROCS
|
||||
}
|
||||
|
||||
clean() {
|
||||
rm -rf cmake-*/
|
||||
}
|
||||
|
||||
package() {
|
||||
cd cmake-*/
|
||||
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
@@ -19,5 +19,5 @@ clean() {
|
||||
|
||||
package() {
|
||||
cd libressl-*/
|
||||
make -j $TT_PROCS install DESTDIR=$TT_SYSROOT
|
||||
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
28
sources/zlib/zlib.spec
Normal file
28
sources/zlib/zlib.spec
Normal file
@@ -0,0 +1,28 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="38ef96b8dfe510d42707d9c781877914792541133e1870841463bfa73f883e32"
|
||||
SRC_NAME="zlib"
|
||||
SRC_URL="https://www.zlib.net/zlib-1.3.1.tar.xz"
|
||||
SRC_VERSION="1.3.1"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd zlib-*/
|
||||
# NOTE: The prefix is set to /usr because man pages are stored under the
|
||||
# prefix whether you like it or not. ~ahill
|
||||
./configure \
|
||||
--eprefix=$TT_PREFIX \
|
||||
--includedir=$TT_INCLUDEDIR \
|
||||
--libdir=$TT_LIBDIR \
|
||||
--prefix=/usr \
|
||||
--shared
|
||||
make -O -j $TT_PROCS
|
||||
}
|
||||
|
||||
clean() {
|
||||
rm -rf zlib-*/
|
||||
}
|
||||
|
||||
package() {
|
||||
cd zlib-*/
|
||||
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
Reference in New Issue
Block a user