summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordreieck2023-05-08 14:26:03 +0200
committerdreieck2023-05-08 14:26:03 +0200
commit7e647c77eb7900bd74f679a730265374729c8962 (patch)
tree3cececabd9f46fbd7c45ecf860d7525a1c9715a5
parent0f5b8554511957057a6e5ec887ec5d16c5f67e52 (diff)
downloadaur-7e647c77eb7900bd74f679a730265374729c8962.tar.gz
Added missing dependencies:
* 'dotnet-runtime' * 'gcc-libs' * 'glibc'
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD8
2 files changed, 10 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 19d3eaace291..5d6c2994ac57 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = cito-git
pkgdesc = The Ć Programming Language. A programming language which can be translated automatically to C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C.
pkgver = 2.2.0+118.r2070.20230421.3664bbd
- pkgrel = 1
+ pkgrel = 2
url = http://github.com/pfusik/cito
arch = aarch64
arch = armv6h
@@ -11,6 +11,9 @@ pkgbase = cito-git
license = GPL3
makedepends = dotnet-sdk
makedepends = git
+ depends = dotnet-runtime
+ depends = gcc-libs
+ depends = glibc
provides = cito=2.2.0+118.r2070.20230421.3664bbd
conflicts = cito
source = cito::git+https://github.com/pfusik/cito.git
diff --git a/PKGBUILD b/PKGBUILD
index 1163d61b3813..906b5e28d188 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ _projectname="cito"
_pkgname="${_projectname}"
pkgname="${_pkgname}-git"
pkgver=2.2.0+118.r2070.20230421.3664bbd
-pkgrel=1
+pkgrel=2
pkgdesc="The Ć Programming Language. A programming language which can be translated automatically to C, C++, C#, D, Java, JavaScript, Python, Swift, TypeScript and OpenCL C."
arch=(
'aarch64'
@@ -20,7 +20,11 @@ _gituser="pfusik"
_giturl="${_githost}/${_gituser}/${_projectname}.git"
url="http://${_githost}/${_gituser}/${_projectname}"
license=("GPL3")
-depends=()
+depends=(
+ 'dotnet-runtime'
+ 'gcc-libs'
+ 'glibc'
+)
makedepends=(
'dotnet-sdk'
'git'