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 --- distribute/archlinux/PKGBUILD | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 distribute/archlinux/PKGBUILD (limited to 'distribute/archlinux/PKGBUILD') 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