Merge branch 'main' of github.com:iglunix/iglunix
This commit is contained in:
commit
8f13ffd9f1
6 changed files with 37 additions and 1 deletions
|
@ -47,6 +47,9 @@ mount ${LOOPBACK} ${ROOT}
|
||||||
packages=(musl mksh bmake gmake llvm libressl cmake curl rsync flex byacc om4 zlib samurai libffi python ca-certificates zlib expat gettext-tiny git kati netbsd-curses kakoune iglunix rust toybox busybox less file pci-ids e2fsprogs util-linux linux-pam kbd)
|
packages=(musl mksh bmake gmake llvm libressl cmake curl rsync flex byacc om4 zlib samurai libffi python ca-certificates zlib expat gettext-tiny git kati netbsd-curses kakoune iglunix rust toybox busybox less file pci-ids e2fsprogs util-linux linux-pam kbd)
|
||||||
cp_packages ${ROOT}
|
cp_packages ${ROOT}
|
||||||
|
|
||||||
|
echo "Linked ld.lld (from llvm) to ld"
|
||||||
|
ln -s /usr/bin/ld.lld /usr/bin/ld
|
||||||
|
|
||||||
echo "Copying misc files & creating misc dirs for live-usb"
|
echo "Copying misc files & creating misc dirs for live-usb"
|
||||||
mkdir ${ROOT}/proc/
|
mkdir ${ROOT}/proc/
|
||||||
mkdir ${ROOT}/dev/
|
mkdir ${ROOT}/dev/
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
pkgver=2.4.103
|
pkgver=2.4.103
|
||||||
pkgname=libdrm
|
pkgname=libdrm
|
||||||
|
dep="libpciaccess"
|
||||||
bad=""
|
bad=""
|
||||||
ext="dev"
|
ext="dev"
|
||||||
|
|
||||||
|
|
30
pkgs/libpciaccess/build.sh
Normal file
30
pkgs/libpciaccess/build.sh
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
pkgname=libpciaccess
|
||||||
|
pkgver=master
|
||||||
|
|
||||||
|
fetch() {
|
||||||
|
curl "https://gitlab.freedesktop.org/xorg/lib/libpciaccess/-/archive/master/libpciaccess-master.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||||
|
tar -xf $pkgname-$pkgver.tar.xz
|
||||||
|
mkdir $pkgname-$pkgver/build
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
cd build
|
||||||
|
meson .. \
|
||||||
|
--buildtype=release \
|
||||||
|
--prefix=/usr \
|
||||||
|
--libexecdir=lib
|
||||||
|
samu
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
cd build
|
||||||
|
DESTDIR=$pkgdir samu install
|
||||||
|
}
|
||||||
|
|
||||||
|
license() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
# cat LICENSE
|
||||||
|
cat COPYING
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
pkgname=mesa
|
pkgname=mesa
|
||||||
pkgver=build-byacc
|
pkgver=build-byacc
|
||||||
deps="musl:wayland:wayland-protocols:llvm:zlib:expat:libffi:libdrm"
|
deps="musl:wayland:wayland-protocols:llvm:zlib:expat:libffi:libdrm:python-mako"
|
||||||
ext=dev
|
ext=dev
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
pkgname=wayland-protocols
|
pkgname=wayland-protocols
|
||||||
pkgver=1.20
|
pkgver=1.20
|
||||||
|
deps="pkgconf:wayland"
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
curl "https://wayland.freedesktop.org/releases/wayland-protocols-1.20.tar.xz" -o $pkgname-$pkgver.tar.xz
|
curl "https://wayland.freedesktop.org/releases/wayland-protocols-1.20.tar.xz" -o $pkgname-$pkgver.tar.xz
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
pkgname=wayland
|
pkgname=wayland
|
||||||
pkgver=1.19.0
|
pkgver=1.19.0
|
||||||
|
deps="libxml2"
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
curl "https://wayland.freedesktop.org/releases/wayland-1.19.0.tar.xz" -o $pkgname-$pkgver.tar.xz
|
curl "https://wayland.freedesktop.org/releases/wayland-1.19.0.tar.xz" -o $pkgname-$pkgver.tar.xz
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue