From 4c2659aacc9819e29772e2ad2cc03b9fb0815df2 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 16 Apr 2020 00:03:31 +0200 Subject: Remove archlinux pkgbuild (it shouldn't be here) and update readme --- README.md | 2 ++ distribute/archlinux/PKGBUILD | 39 --------------------------------------- 2 files changed, 2 insertions(+), 39 deletions(-) delete mode 100644 distribute/archlinux/PKGBUILD diff --git a/README.md b/README.md index 66cb9d2..7ba2f40 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ Linux is the primary platform, the platform which master branch is guaranteed to # Installation ## Posix (Linux, MacOS, OpenBSD, Haiku) `./cmake/install.sh` +## Arch Linux +On Arch Linux, sibs can alternatively be found on aur under the name `sibs-git` (`yay -S sibs-git`). ## Windows Use vcpkg to install the required dependencies and then generate visual studio (or another system) build files using CMakeLists.txt # Usage diff --git a/distribute/archlinux/PKGBUILD b/distribute/archlinux/PKGBUILD deleted file mode 100644 index 13c6f79..0000000 --- a/distribute/archlinux/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: dec05eba - -pkgname=sibs-git -pkgver=v0.3.2.r0.g784919f -pkgrel=1 -pkgdesc='A simple cross-platform build system and package manager for c, c++ and zig. Inspired by rusts cargo' -arch=('x86_64') -url="https://github.com/DEC05EBA/sibs" -license=('GPL3') -depends=('curl' 'libarchive' 'libgit2' 'ninja' 'cmake' 'ccache') -makedepends=('curl' 'libarchive' 'libgit2' 'cmake' 'git') -optdepends=('git') -provides=('sibs') -conflicts=('sibs') -source=("git+https://github.com/DEC05EBA/sibs.git") -sha512sums=('SKIP') - -pkgver() { - cd "$srcdir/sibs" - git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' -} - -prepare() { - cd "$srcdir/sibs" - git submodule update --init --recursive -} - -build() { - cd "$srcdir/sibs/cmake" - mkdir release - cd release - cmake -DCMAKE_BUILD_TYPE=Release ../../ - make -} - -package() { - cd "$srcdir/sibs/cmake/release" - install -D -m +x sibs "$pkgdir/usr/bin/sibs" -} -- cgit v1.2.3