2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00

general: Added packages.

This commit is contained in:
Dylan Araps 2019-05-18 19:09:51 +03:00
parent f491a8661a
commit d17fef5e48
9 changed files with 24 additions and 26 deletions

View File

@ -1,7 +0,0 @@
#!/bin/sh -e
make
make DESTDIR="$1" install
install -Dm755 ./etc/rc.init "$1/etc/rc.init"
install -Dm755 ./etc/rc.shutdown "$1/etc/rc.shutdown"

View File

@ -1,17 +0,0 @@
/var/db/puke/hummingbird/version
/var/db/puke/hummingbird/build
/var/db/puke/hummingbird/checksums
/var/db/puke/hummingbird/manifest
/var/db/puke/hummingbird/sources
/var/db/puke/hummingbird
/var/db/puke
/var/db
/var
/usr/bin/reboot
/usr/bin/hummingbird
/usr/bin/shutdown
/usr/bin
/usr
/etc/rc.init
/etc/rc.shutdown
/etc

View File

@ -1 +0,0 @@
git:https://github.com/Sweets/hummingbird.git

View File

@ -1 +0,0 @@
git 1

16
repo/linux/build Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh -e
mkdir -p "$1/boot" "$1/lib/modules"
make defconfig
make
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1" \
modules_install
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1" \
install

5
repo/linux/depends Normal file
View File

@ -0,0 +1,5 @@
perl
gmp
flex
bison
openssl

2
repo/linux/sources Normal file
View File

@ -0,0 +1,2 @@
https://kernel.org/pub/linux/kernel/v5.x/linux-5.0.2.tar.xz
https://kernel.org/pub/linux/kernel/v5.x/patch-5.0.2.xz

1
repo/linux/version Normal file
View File

@ -0,0 +1 @@
5.0.2 1