From 606bc59d0f8f67815c6a717843835477d44db6b3 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 1 May 2022 21:21:05 +0000 Subject: added ungoogled chromium --- skip/libssh.xibuild | 25 +++++++++++++++++++++++++ skip/x264.xibuild | 27 +++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 skip/libssh.xibuild create mode 100644 skip/x264.xibuild (limited to 'skip') diff --git a/skip/libssh.xibuild b/skip/libssh.xibuild new file mode 100644 index 0000000..0c35d14 --- /dev/null +++ b/skip/libssh.xibuild @@ -0,0 +1,25 @@ +#!/bin/sh + +NAME="libssh" +DESC="Library for accessing ssh client services through C libraries" + +MAKEDEPS="cmake argp-standalone" +DEPS="openssl " + +PKG_VER=0.9.6 +SOURCE="https://www.libssh.org/files/${PKG_VER%.*}/libssh-$PKG_VER.tar.xz" + +build () { + cmake -B build \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DBUILD_SHARED_LIBS=True \ + -DBUILD_STATIC_LIBS=OFF + -DWITH_GSSAPI=OFF + -DUNIT_TESTING=OFF + cmake --build build +} + +package () { + DESTDIR="$PKG_DEST" cmake --install build +} diff --git a/skip/x264.xibuild b/skip/x264.xibuild new file mode 100644 index 0000000..4fdd0f6 --- /dev/null +++ b/skip/x264.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="x264" +DESC="Free library for encoding H264/AVC video streams" + +MAKEDEPS="make libx11 perl nasm sbase bash" +DEPS="musl " + +PKG_VER=0.163_git20210613 +gitrev=master +SOURCE="https://code.videolan.org/videolan/x264/-/archive/$gitrev/x264-$gitrev.tar.gz" + +build () { + ./configure \ + --prefix=/usr + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --disable-static \ + --enable-shared \ + --enable-pic \ + --extra-cflags=-fno-agressive-loop-optimizations + make +} + +package () { + make DESTDIR=$PKG_DEST bindir=/usr/bin libdir=/usr/lib includedir=/usr/include install +} -- cgit v1.2.1