forked from alnux/repo
gcc, git, make & openssl added
This commit is contained in:
parent
65081fad78
commit
2b05085cad
11 changed files with 31 additions and 0 deletions
4
gcc-bin/package
Normal file
4
gcc-bin/package
Normal file
|
@ -0,0 +1,4 @@
|
|||
pkg_config_ver="0.1"
|
||||
pkg_config_name="gcc-bin"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
BIN
gcc-bin/payload/usr/bin/gcc
Executable file
BIN
gcc-bin/payload/usr/bin/gcc
Executable file
Binary file not shown.
BIN
gcc-bin/payload/usr/bin/gcc-ar
Executable file
BIN
gcc-bin/payload/usr/bin/gcc-ar
Executable file
Binary file not shown.
BIN
gcc-bin/payload/usr/bin/gcc-nm
Executable file
BIN
gcc-bin/payload/usr/bin/gcc-nm
Executable file
Binary file not shown.
BIN
gcc-bin/payload/usr/bin/gcc-ranlib
Executable file
BIN
gcc-bin/payload/usr/bin/gcc-ranlib
Executable file
Binary file not shown.
6
git/build
Normal file
6
git/build
Normal file
|
@ -0,0 +1,6 @@
|
|||
wget -O git.tar.xz https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.9.5.tar.xz
|
||||
tar -xf git.tar.xz
|
||||
cd git
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make install DESTDIR="$1"
|
5
git/package
Normal file
5
git/package
Normal file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="2.9.5"
|
||||
pkg_config_name="git"
|
||||
pkg_config_makedepends="openssl"
|
||||
pkg_config_depends="openssl"
|
4
make-bin/package
Normal file
4
make-bin/package
Normal file
|
@ -0,0 +1,4 @@
|
|||
pkg_config_ver="0.1"
|
||||
pkg_config_name="make-bin"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
BIN
make-bin/payload/usr/bin/make
Executable file
BIN
make-bin/payload/usr/bin/make
Executable file
Binary file not shown.
7
openssl/build
Normal file
7
openssl/build
Normal file
|
@ -0,0 +1,7 @@
|
|||
wget -O openssl.tar.gz https://www.openssl.org/source/openssl-3.0.0-beta1.tar.gz
|
||||
tar -xf openssl.tar.gz
|
||||
cd openssl
|
||||
chmod +x ./config
|
||||
./config --prefix="/usr"
|
||||
make
|
||||
make install DESTDIR="$1"
|
5
openssl/package
Normal file
5
openssl/package
Normal file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="3.0.0-beta"
|
||||
pkg_config_name="openssl"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
Loading…
Reference in a new issue