Autogenerated commit at 2022-11-21 20:54:58.213376

This commit is contained in:
ArcH linux ReposItory MANager 2022-11-21 20:54:58 +00:00
parent 9215062fbe
commit 671fa48cf3
2 changed files with 30 additions and 0 deletions

13
ix/.SRCINFO Normal file
View File

@ -0,0 +1,13 @@
pkgbase = ix
pkgdesc = A command line pastebin - shell
pkgver = 1.0
pkgrel = 1
url = http://ix.io
arch = any
license = unknown
depends = curl
source = http://ix.io/client
sha256sums = a7f8ff373eedccb255ec7814c15b22c0dd56c42c783e8afe1f24601534d18275
pkgname = ix

17
ix/PKGBUILD Normal file
View File

@ -0,0 +1,17 @@
# Maintainer: Pedro Freitas <pedrosffreitas at gmail dot com>
pkgname='ix'
pkgver=1.0
pkgrel=1
pkgdesc="A command line pastebin - shell"
arch=('any')
license=('unknown')
url="http://ix.io"
depends=('curl')
source=("http://ix.io/client")
sha256sums=('a7f8ff373eedccb255ec7814c15b22c0dd56c42c783e8afe1f24601534d18275')
package() {
mkdir -p ${pkgdir}/usr/bin
install -m655 client ${pkgdir}/usr/bin/ix
}