diff options
author | Davide Garberi | 2019-12-09 19:42:29 +0100 |
---|---|---|
committer | Davide Garberi | 2019-12-09 21:17:58 +0100 |
commit | 6fc63784bfca4aa0da98e2a4ee7d090f6dbf0547 (patch) | |
tree | 937862239055ad238f7f59874ba5d772c58b9499 | |
download | aur-6fc63784bfca4aa0da98e2a4ee7d090f6dbf0547.tar.gz |
Initial aurpkg PKGBUILD
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..e0c778379136 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = aurpkg + pkgdesc = A simple shell script to build and install packages from AUR repositories + pkgver = 1.2.3 + pkgrel = 1 + url = https://github.com/DD3Boh/aurpkg + arch = i686 + arch = x86_64 + arch = x86 + groups = + license = GPL 3.0 + depends = curl + depends = git + source = aurpkg-1.2.3.tar.gz::https://github.com/DD3Boh/aurpkg/archive/1.2.3.tar.gz + sha256sums = 5abd72d9d12c12aadc26542d873b988f72048f3c0f3cf1e3414d498f0a87e8a7 + +pkgname = aurpkg + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..64d002b506e9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Davide Garberi <dade.garberi@gmail.com> +# Contributor: gstux <gstux@protonmail.com> +pkgname=aurpkg +pkgver=1.2.3 +pkgrel=1 +epoch= +pkgdesc="A simple shell script to build and install packages from AUR repositories" +arch=('i686' 'x86_64' 'x86') +url="https://github.com/DD3Boh/aurpkg" +license=('GPL 3.0') +groups=('') +depends=('curl' 'git') +install= +changelog= +source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") +sha256sums=('5abd72d9d12c12aadc26542d873b988f72048f3c0f3cf1e3414d498f0a87e8a7') +noextract=() + +package() { + install -Dm755 "${srcdir}"/${pkgname}-${pkgver}/aurpkg "${pkgdir}"/usr/bin/aurpkg +} |