[deploy] Add the aur submodule
This commit is contained in:
parent
ff3350de5d
commit
55b9d57387
4 changed files with 41 additions and 0 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "archpackage/archy-slstatus/archpackage/archy-slstatus/archy-slstatus"]
|
||||
path = archpackage/archy-slstatus/archpackage/archy-slstatus/archy-slstatus
|
||||
url = ssh://aur@aur.archlinux.org/archy-slstatus.git
|
14
archpackage/archy-slstatus/.SRCINFO
Normal file
14
archpackage/archy-slstatus/.SRCINFO
Normal file
|
@ -0,0 +1,14 @@
|
|||
pkgbase = archy-slstatus
|
||||
pkgdesc = A suckless status monitor for archy linux
|
||||
pkgver = 1.0.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/archy-linux/archy-slstatus
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
provides = archy-slstatus
|
||||
conflicts = archy-slstatus
|
||||
source = https://github.com/archy-linux/archy-slstatus/archive/refs/tags/1.0.0.tar.gz
|
||||
sha256sums = d7414e26f06ee565337791d75a502760a00ebff46319be636c150a3c3d78275d
|
||||
|
||||
pkgname = archy-slstatus
|
23
archpackage/archy-slstatus/PKGBUILD
Normal file
23
archpackage/archy-slstatus/PKGBUILD
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Maintainer: Anas Elgarhy <anas.elgarhy.dev@gmail.com>
|
||||
pkgname=archy-slstatus
|
||||
pkgver=1.0.0
|
||||
pkgrel=1
|
||||
pkgdesc="A suckless status monitor for archy linux"
|
||||
url="https://github.com/archy-linux/$pkgname"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('MIT')
|
||||
options=()
|
||||
depends=()
|
||||
install=
|
||||
provides=("$pkgname")
|
||||
conflicts=("$pkgname")
|
||||
source=("https://github.com/archy-linux/$pkgname/archive/refs/tags/$pkgname_$pkgver.tar.gz")
|
||||
sha256sums=('d7414e26f06ee565337791d75a502760a00ebff46319be636c150a3c3d78275d')
|
||||
|
||||
package() {
|
||||
cd "$pkgname_$pkgver" || exit 1
|
||||
# shellcheck disable=SC2154
|
||||
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2cfbf276e1f9f5c8d431211952aac2fb0d1f0bc5
|
Loading…
Reference in a new issue