mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
Initial submission of alescript
This commit is contained in:
commit
5253d47867
2 changed files with 31 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = alescript
|
||||
pkgdesc = A programming language targeted for building console applications.
|
||||
pkgver = 1.0
|
||||
pkgrel = 1
|
||||
url = https://jd.pnc3.net/software/alescript
|
||||
arch = x86_64
|
||||
license = Apache-2.0
|
||||
makedepends = cmake
|
||||
makedepends = gcc
|
||||
makedepends = make
|
||||
source = https://github.com/Jeyers-Development/aleScript-main/releases/download/1.0-1/alescript.tar.gz
|
||||
sha256sums = 7182db862228818b65f908fad88da3c79089956095599affeae66496d899b30b
|
||||
|
||||
pkgname = alescript
|
||||
17
PKGBUILD
Normal file
17
PKGBUILD
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Maintainer: Jacob Meyers <jeyersdev@gmail.com>
|
||||
pkgname=alescript
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgdesc="A programming language targeted for building console applications."
|
||||
arch=('x86_64')
|
||||
url="https://jd.pnc3.net/software/alescript"
|
||||
license=('Apache-2.0')
|
||||
depends=()
|
||||
makedepends=('cmake' 'gcc' 'make')
|
||||
source=("https://github.com/Jeyers-Development/aleScript-main/releases/download/$pkgver-$pkgrel/alescript.tar.gz")
|
||||
sha256sums=('7182db862228818b65f908fad88da3c79089956095599affeae66496d899b30b')
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname"
|
||||
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue