mirror of
https://linux.maple.camp/git/ahill/maplelinux-bootstrap.git
synced 2026-02-11 10:13:35 +00:00
Built curl, expat, and gettext, and added git
This commit is contained in:
18
sources/curl/curl.spec
Normal file
18
sources/curl/curl.spec
Normal file
@@ -0,0 +1,18 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="40df79166e74aa20149365e11ee4c798a46ad57c34e4f68fd13100e2c9a91946"
|
||||
SRC_NAME="curl"
|
||||
SRC_URL="https://curl.se/download/curl-8.18.0.tar.xz"
|
||||
SRC_VERSION="8.18.0"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd curl-$SRC_VERSION/
|
||||
./configure $TT_AUTOCONF_COMMON \
|
||||
--disable-libgcc \
|
||||
--disable-static \
|
||||
--enable-optimize \
|
||||
--with-openssl \
|
||||
--without-libpsl
|
||||
make -j $TT_PROCS
|
||||
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
13
sources/expat/expat.spec
Normal file
13
sources/expat/expat.spec
Normal file
@@ -0,0 +1,13 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="71df8f40706a7bb0a80a5367079ea75d91da4f8c65c58ec59bcdfbf7decdab9f"
|
||||
SRC_NAME="expat"
|
||||
SRC_URL="https://github.com/libexpat/libexpat/releases/download/R_2_7_3/expat-2.7.3.tar.xz"
|
||||
SRC_VERSION="2.7.3"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd expat-$SRC_VERSION/
|
||||
./configure $TT_AUTOCONF_COMMON --disable-static
|
||||
make -O -j $TT_PROCS
|
||||
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
13
sources/gettext/gettext.spec
Normal file
13
sources/gettext/gettext.spec
Normal file
@@ -0,0 +1,13 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="39acf4b0371e9b110b60005562aace5b3631fed9b1bb9ecccfc7f56e58bb1d7f"
|
||||
SRC_NAME="gettext"
|
||||
SRC_URL="https://ftp.gnu.org/pub/gnu/gettext/gettext-0.26.tar.gz"
|
||||
SRC_VERSION="0.26"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd gettext-$SRC_VERSION/
|
||||
./configure $TT_AUTOCONF_COMMON --disable-static --enable-year2038
|
||||
make -O -j $TT_PROCS
|
||||
make -O -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR
|
||||
}
|
||||
14
sources/git/git.spec
Normal file
14
sources/git/git.spec
Normal file
@@ -0,0 +1,14 @@
|
||||
# Maintainer: Alexander Hill <ahill@breadpudding.dev>
|
||||
SRC_HASH="3cd8fee86f69a949cb610fee8cd9264e6873d07fa58411f6060b3d62729ed7c5"
|
||||
SRC_NAME="git"
|
||||
SRC_URL="https://www.kernel.org/pub/software/scm/git/git-2.52.0.tar.xz"
|
||||
SRC_VERSION="2.52.0"
|
||||
|
||||
build() {
|
||||
tar xf ../$SRC_FILENAME
|
||||
cd git-$SRC_VERSION/
|
||||
# TODO: What breaks if I pass NO_CURL or NO_EXPAT? ~ahill
|
||||
make -j $TT_PROCS NO_REGEX=NeedsStartEnd NO_TCLTK=1
|
||||
# TODO: How do we tell git where to install components? ~ahill
|
||||
make -j $TT_PROCS install DESTDIR=$TT_INSTALLDIR NO_REGEX=NeedsStartEnd NO_TCLTK=1
|
||||
}
|
||||
Reference in New Issue
Block a user