diff options
Diffstat (limited to 'repo/extra')
| -rw-r--r-- | repo/extra/check.xibuild | 12 | ||||
| -rw-r--r-- | repo/extra/meson.xibuild | 18 | ||||
| -rw-r--r-- | repo/extra/ninja.xibuild | 18 | ||||
| -rw-r--r-- | repo/extra/vim.xibuild | 34 | ||||
| -rw-r--r-- | repo/extra/xibuild.xibuild | 17 | ||||
| -rw-r--r-- | repo/extra/xipkg.xibuild | 11 | 
6 files changed, 0 insertions, 110 deletions
| diff --git a/repo/extra/check.xibuild b/repo/extra/check.xibuild deleted file mode 100644 index a472872..0000000 --- a/repo/extra/check.xibuild +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -DEPS=(awk) - -SOURCE=https://github.com/libcheck/check/releases/download/0.15.2/check-0.15.2.tar.gz -DESC="A unit testing framework for C" - -build () { -    ./configure --prefix=/usr --disable-static -    make -    make DESTDIR=$PKG_DEST install  -} diff --git a/repo/extra/meson.xibuild b/repo/extra/meson.xibuild deleted file mode 100644 index c8f7dde..0000000 --- a/repo/extra/meson.xibuild +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -DEPS=(python ninja) - -SOURCE=https://github.com/mesonbuild/meson -BRANCH=0.59 - -DESC="High productivity build system" - -build () { -    python setup.py build -    python setup.py install --root=$PKG_DEST -} - -package () { -    install -vDm644 data/shell-completions/bash/meson $PKG_DEST/usr/share/bash-completion/completions/meson -    install -vDm644 data/shell-completions/zsh/_meson $PKG_DEST/usr/share/zsh/site-functions/_meson -} diff --git a/repo/extra/ninja.xibuild b/repo/extra/ninja.xibuild deleted file mode 100644 index cfd705f..0000000 --- a/repo/extra/ninja.xibuild +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -DEPS=(glibc) - -SOURCE=git://github.com/ninja-build/ninja.git -BRANCH=release -DESC="Small build system with a focus on speed" - -build () { -    python configure.py --bootstrap -    ./ninja ninja_test -} - -package () { -    install -vm755 ninja $PKG_DEST/usr/bin/ -    install -vDm644 misc/bash-completion $PKG_DEST/usr/share/bash-completion/completions/ninja -    install -vDm644 misc/zsh-completion  $PKG_DEST/usr/share/zsh/site-functions/_ninja -} diff --git a/repo/extra/vim.xibuild b/repo/extra/vim.xibuild deleted file mode 100644 index 27e04ad..0000000 --- a/repo/extra/vim.xibuild +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -DEPS=(gpm acl glibc libgcrypt pcre zlib) - -SOURCE=https://github.com/vim/vim.git -DESC="Vi Improved" - -build () { -    echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h -    ./configure --prefix=/usr --disable-gtk-check --disable-motif-check --disable-athena-check --disable-gui --disable-xsmp --without-x -disable-canberra --disable-libsodium --disable-gpm --disable-libsodium -    make -    make DESTDIR=$PKG_DEST install  -} - - -package () { -    cat > vimrc << "EOF" -" Begin /etc/vimrc -" Ensure defaults are set before customizing settings, not after -source $VIMRUNTIME/defaults.vim -let skip_defaults_vim=1  -set nocompatible -set backspace=2 -set mouse= -syntax on -if (&term == "xterm") || (&term == "putty") -  set background=dark -endif -" End /etc/vimrc -EOF -    curl -sL https://davidovski.xyz/r/vim/vimrc >> vimrc -    mkdir -pv $PKG_DEST/etc -    cp -v vimrc $PKG_DEST/etc/vimrc -} diff --git a/repo/extra/xibuild.xibuild b/repo/extra/xibuild.xibuild deleted file mode 100644 index 71649fd..0000000 --- a/repo/extra/xibuild.xibuild +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -DEPS=(bash tar git hg curl openssl ) - -SOURCE=https://git.davidovski.xyz/xilinux/xibuild.git -DESC="The build system for xilinux used to build packages and maintain repositories" - -package () { -    mkdir -pv $PKG_DEST/usr/bin -    cp -v xibuild $PKG_DEST/usr/bin/ -    cp xibuild $PKG_DEST/usr/bin/ - -    mkdir -pv $PKG_DEST/home/xibuild -    cp -r * $PKG_DEST/home/xibuild -} - - diff --git a/repo/extra/xipkg.xibuild b/repo/extra/xipkg.xibuild deleted file mode 100644 index f18745f..0000000 --- a/repo/extra/xipkg.xibuild +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -DEPS=(tar python python-requests) - -SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git -DESC="The xilinux package manager" - -build () { -    make -    make DESTDIR=$PKG_DEST install -} | 
