blob: 59c0854a7e892b39f13532241a97d646f2602395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: LoaD Accumulator <lda@freetards.xyz>
pkgname=cytoplasm-git
pkgver=0.4.0
pkgrel=2
pkgdesc="The Telodendria core library"
arch=('i686' 'x86_64' 'aarch64')
url="https://git.telodendria.io/Telodendria/Cytoplasm"
license=('Telodendria')
depends=('openssl')
makedepends=('git' 'gcc' 'sudo' 'make')
provides=('cytoplasm')
source=($pkgname::git+https://git.telodendria.io/Telodendria/Cytoplasm.git)
md5sums=()
validpgpkeys=()
md5sums=("SKIP")
prepare() {
cd "$pkgname"
}
build() {
cd "$pkgname"
# By default, it uses the c99 compiler instead of cc?????
export CC=cc
./configure --prefix=/usr --no-static
make
}
package() {
cd "$pkgname"
sudo make DESTDIR="$pkgdir/" install
}
|