diff options
author | Israel Roldan | 2023-08-07 03:49:08 +0000 |
---|---|---|
committer | Israel Roldan | 2023-08-07 03:49:08 +0000 |
commit | 0792193d0af25ef56a820d48e3c943b764429ee2 (patch) | |
tree | a9b904c95c982d7b56fdeb1801c4b283dbfd69fd | |
download | aur-0792193d0af25ef56a820d48e3c943b764429ee2.tar.gz |
Automatic deployment on '2023-08-07 03:49:08.884116345 UTC' from the official repository in GitHub using CI.
-rw-r--r-- | .SRCINFO | 18 | ||||
-rw-r--r-- | PKGBUILD | 33 |
2 files changed, 51 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..82eb26582ed9 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = optional-packages + pkgdesc = Command-line tool that finds all the optional packages of the packages that were pointed by you. It can install the packages. + pkgver = 1.0.0 + pkgrel = 1 + url = https://github.com/airvzxf/archlinux-optional-packages + arch = x86_64 + license = GPL3 + depends = bash + depends = pacman + depends = grep + depends = sed + depends = coreutils + depends = sudo + source = archlinux-optional-packages-1.0.0.tar.gz::https://github.com/airvzxf/archlinux-optional-packages/archive/refs/tags/v1.0.0.tar.gz + validpgpkeys = 63ADA633FE7468630D9BC56175530B8B9F74CF3A + md5sums = eed3c79629b56d62fd537ff188eef6b4 + +pkgname = optional-packages diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e526b3fbf1b2 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Israel Roldan <israel.alberto.rv@gmail.com> +# Contributor: Israel Roldan <israel.alberto.rv@gmail.com> + +# PKGBUILD variables. +pkgname=optional-packages +pkgver=1.0.0 +pkgrel=1 +pkgdesc='Command-line tool that finds all the optional packages of the packages that were pointed by you. It can install the packages.' +arch=(x86_64) +url='https://github.com/airvzxf/archlinux-optional-packages' +license=(GPL3) +depends=( + bash + pacman + grep + sed + coreutils + sudo +) +source=('archlinux-optional-packages-1.0.0.tar.gz::https://github.com/airvzxf/archlinux-optional-packages/archive/refs/tags/v1.0.0.tar.gz') +md5sums=('eed3c79629b56d62fd537ff188eef6b4') +validpgpkeys=( + 63ADA633FE7468630D9BC56175530B8B9F74CF3A # PGP: Israel Roldan (airvzxf) <israel.alberto.rv@gmail.com>, https://github.com/airvzxf.gpg +) + +# PKGBUILD functions. +package() { + cd "${srcdir}/archlinux-optional-packages-1.0.0" || return + install -Dm644 README.md "${pkgdir}/usr/share/doc/optional-packages/README.md" + + cd "src" || return + install -Dm755 "optional-packages" "${pkgdir}/usr/bin/optional-packages" +} |