diff options
author | kleintux | 2021-12-18 13:17:59 +0100 |
---|---|---|
committer | kleintux | 2021-12-18 13:17:59 +0100 |
commit | 889229680cd0807b384d268ad956b7762fed4d90 (patch) | |
tree | 19696af2a73a9defd04516cf2c728834b9a2cd0f | |
download | aur-889229680cd0807b384d268ad956b7762fed4d90.tar.gz |
Update to 2.2.0
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..c9092671e959 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = ia-bin + pkgdesc = A Python and Command-Line Interface to Archive.org + pkgver = 2.2.0 + pkgrel = 1 + url = https://archive.org/download/ia-pex/ + arch = x86_64 + license = GPL + provides = ia-bin + conflicts = ia-bin + source = https://archive.org/download/ia-pex/ia + sha512sums = 2c599bc83fa102f9de47e350cc3636d79ca620da154d7e8a33b22b97288231c8ad1fbb394eba3bf7fb28200aa055a28828715b260c33ecfb69df945af0fd58e9 + +pkgname = ia-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..a328a17fab57 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch> +_pkgname=ia +pkgname=${_pkgname}-bin +pkgver=2.2.0 +pkgrel=1 +pkgdesc="A Python and Command-Line Interface to Archive.org" +arch=('x86_64') +url="https://archive.org/download/ia-pex/" +license=('GPL') +provides=(${pkgname}) +conflicts=(${pkgname}) +source=("https://archive.org/download/ia-pex/ia") +sha512sums=('2c599bc83fa102f9de47e350cc3636d79ca620da154d7e8a33b22b97288231c8ad1fbb394eba3bf7fb28200aa055a28828715b260c33ecfb69df945af0fd58e9') + +package() { + cd ${startdir} + install -Dm755 "${_pkgname}" "${pkgdir}"/usr/bin/${_pkgname} +} |