aboutsummaryrefslogtreecommitdiff
path: root/distribute
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-04-16 00:03:31 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:58 +0200
commit4c2659aacc9819e29772e2ad2cc03b9fb0815df2 (patch)
tree77fcd2e21974b9e9aeb3103bd338969591f6d683 /distribute
parent45774dfb43a8587d3a1ea25ef64fcdd18c651cf8 (diff)
Remove archlinux pkgbuild (it shouldn't be here) and update readme
Diffstat (limited to 'distribute')
-rw-r--r--distribute/archlinux/PKGBUILD39
1 files changed, 0 insertions, 39 deletions
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 <dec05eba@protonmail.com>
-
-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"
-}