forked from alnux/repo
Compare commits
12 commits
b7d6c25f51
...
ad479cab79
Author | SHA1 | Date | |
---|---|---|---|
|
ad479cab79 | ||
|
914142e1ff | ||
|
b0f6be76e9 | ||
4a042ac9ab | |||
ee164b2911 | |||
40c4f7b4d7 | |||
|
c0acbb246d | ||
203e0834d1 | |||
a93b367129 | |||
d1a92bbeef | |||
5f21d2d2a7 | |||
e3a10be411 |
14 changed files with 118 additions and 13 deletions
25
alnux/build
25
alnux/build
|
@ -1,4 +1,4 @@
|
|||
mkdir -p -m 775 \
|
||||
mkdir -p -m 775\
|
||||
$1/dev \
|
||||
$1/mnt \
|
||||
$1/run \
|
||||
|
@ -8,14 +8,14 @@ $1/bin \
|
|||
$1/usr \
|
||||
$1/usr/share \
|
||||
$1/usr/share/man \
|
||||
$1/usr/share/man1 \
|
||||
$1/usr/share/man2 \
|
||||
$1/usr/share/man3 \
|
||||
$1/usr/share/man4 \
|
||||
$1/usr/share/man5 \
|
||||
$1/usr/share/man6 \
|
||||
$1/usr/share/man7 \
|
||||
$1/usr/share/man8 \
|
||||
$1/usr/share/man/man1 \
|
||||
$1/usr/share/man/man/man2 \
|
||||
$1/usr/share/man/man3 \
|
||||
$1/usr/share/man/man4 \
|
||||
$1/usr/share/man/man5 \
|
||||
$1/usr/share/man/man6 \
|
||||
$1/usr/share/man/man7 \
|
||||
$1/usr/share/man/man8 \
|
||||
$1/lib \
|
||||
$1/var/ \
|
||||
$1/var/cache \
|
||||
|
@ -27,15 +27,16 @@ $1/var/empty \
|
|||
$1/var/service \
|
||||
$1/var/spool
|
||||
|
||||
mkdir -p -m 555 \
|
||||
mkdir -m 555 -p \
|
||||
$1/proc \
|
||||
$1/sys
|
||||
mkdir -p -m 0750 \
|
||||
|
||||
mkdir -m 0750 -p \
|
||||
$1/root
|
||||
|
||||
mkdir -p -m 1777 \
|
||||
$1/tmp \
|
||||
$1/var/tmp
|
||||
$1/var/tmp \
|
||||
|
||||
ln -sf $1/usr/bin $1/bin
|
||||
ln -sf $1/usr/bin $1/sbin
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
wget https://ftp.gnu.org/gnu/tar/tar-1.34.tar.xz
|
||||
tar -xf tar-1.34
|
||||
tar -xf tar-1.34.tar.xz
|
||||
cd tar-1.34
|
||||
|
||||
./configure DEFAULT_RMT_DIR=/etc
|
||||
|
|
11
xorg-libXau/build
Executable file
11
xorg-libXau/build
Executable file
|
@ -0,0 +1,11 @@
|
|||
wget https://www.x.org/pub/individual/lib/libXau-1.0.9.tar.bz2
|
||||
tar -xf libXau-1.0.9.tar.bz2
|
||||
cd libXau-1.0.9
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
|
||||
./configure $XORG_CONFIG
|
||||
make
|
||||
make DESTDIR="$1" install
|
5
xorg-libXau/package
Executable file
5
xorg-libXau/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="1.0.9"
|
||||
pkg_config_name="xorg-libXau"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends="xorg-xorgproto"
|
11
xorg-libXdmcp/build
Executable file
11
xorg-libXdmcp/build
Executable file
|
@ -0,0 +1,11 @@
|
|||
wget https://www.x.org/pub/individual/lib/libXdmcp-1.1.3.tar.bz2
|
||||
tar -xf libXdmcp-1.1.3.tar.bz2
|
||||
cd libXdmcp-1.1.3
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
|
||||
./configure $XORG_CONFIG --docdir=/usr/share/doc/libXdmcp-1.1.3 &&
|
||||
make
|
||||
make DESTDIR="$1" install
|
5
xorg-libXdmcp/package
Executable file
5
xorg-libXdmcp/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="1.1.3"
|
||||
pkg_config_name="libXdmcp"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends="xorg-xorgproto"
|
15
xorg-libxcb/build
Executable file
15
xorg-libxcb/build
Executable file
|
@ -0,0 +1,15 @@
|
|||
wget https://xorg.freedesktop.org/archive/individual/lib/libxcb-1.14.tar.xz
|
||||
tar -xf libxcb-1.14.tar.xz
|
||||
cd libxcb-1.14
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
|
||||
CFLAGS="${CFLAGS:--O2 -g} -Wno-error=format-extra-args" \
|
||||
PYTHON=python3 \
|
||||
./configure $XORG_CONFIG \
|
||||
--without-doxygen \
|
||||
|
||||
make
|
||||
make DESTDIR="$1" install
|
5
xorg-libxcb/package
Executable file
5
xorg-libxcb/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="1.0.9"
|
||||
pkg_config_name="xorg-libxcb"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends="xorg-libXau xorg-xcb-proto libXdmcp"
|
11
xorg-utilmacros/build
Executable file
11
xorg-utilmacros/build
Executable file
|
@ -0,0 +1,11 @@
|
|||
wget https://www.x.org/pub/individual/util/util-macros-1.19.3.tar.bz2
|
||||
tar -xf util-macros-1.19.3.tar.bz2
|
||||
cd util-macros-1.19.3
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
|
||||
./configure $XORG_CONFIG
|
||||
|
||||
make DESTDIR="$1" install
|
5
xorg-utilmacros/package
Executable file
5
xorg-utilmacros/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="1.19.3"
|
||||
pkg_config_name="xorg-utilmacros"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
11
xorg-xcb-proto/build
Executable file
11
xorg-xcb-proto/build
Executable file
|
@ -0,0 +1,11 @@
|
|||
wget https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-1.14.1.tar.xz
|
||||
tar -xf xcb-proto-1.14.1.tar.xz
|
||||
cd xcb-proto-1.14.1
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
|
||||
PYTHON=python3 ./configure $XORG_CONFIG
|
||||
make
|
||||
make DESTDIR="$1" install
|
5
xorg-xcb-proto/package
Executable file
5
xorg-xcb-proto/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="1.14.1"
|
||||
pkg_config_name="xorg-xcb-proto"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends="xorg-utilmacros"
|
15
xorg-xorgproto/build
Executable file
15
xorg-xorgproto/build
Executable file
|
@ -0,0 +1,15 @@
|
|||
wget https://xorg.freedesktop.org/archive/individual/proto/xorgproto-2021.4.tar.bz2
|
||||
tar -xf xorgproto-2021.4.tar.bz2
|
||||
cd xorgproto-2021.4
|
||||
|
||||
export XORG_PREFIX="/usr"
|
||||
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static"
|
||||
export DESTDIR="$1"
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
meson --prefix=$XORG_PREFIX -Dlegacy=true ..
|
||||
ninja
|
||||
ninja install
|
5
xorg-xorgproto/package
Executable file
5
xorg-xorgproto/package
Executable file
|
@ -0,0 +1,5 @@
|
|||
pkg_config_deploy=true
|
||||
pkg_config_ver="2021.4"
|
||||
pkg_config_name="xorg-xorgproto"
|
||||
pkg_config_makedepends=""
|
||||
pkg_config_depends=""
|
Loading…
Reference in a new issue