blob: 9825f181d0075d7d74a32b6a44984159f957352e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: TingPing <tingping@tingping.se>
pkgname=fpaste
pkgver=0.4.1.1
pkgrel=1
pkgdesc='A cli frontend for the fpaste.org pastebin'
arch=('any')
url='https://pagure.io/fpaste'
license=('GPL3')
depends=('python')
source=("https://pagure.io/fpaste/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
package() {
cd "$pkgname-$pkgver"
install -D -m755 'fpaste' "$pkgdir/usr/bin/fpaste"
install -D -m644 'docs/man/en/fpaste.1' "$pkgdir/usr/share/man/man1/fpaste.1"
}
sha256sums=('ceae29cda16425d6f7eef0ae1301cb323425d7dc654b0c1b90c71d295c901266')
|