diff options
author | blambin | 2018-04-22 15:03:04 +0800 |
---|---|---|
committer | blambin | 2018-04-22 15:03:04 +0800 |
commit | 188d178ff1b7e8e7e9a596e2a6e7e6fe7e585d43 (patch) | |
tree | 5263a5f506fa6f48dba0d271f1b0b3251e5cc0d2 /PKGBUILD | |
download | aur-188d178ff1b7e8e7e9a596e2a6e7e6fe7e585d43.tar.gz |
init commit
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1c51eb0ef68e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: blambin <blambinneng at gmail dot com> +pkgname=ipfs-screencap +pkgver=0.0.1 +pkgrel=1 +pkgdesc="Capture screenshots, publish them to IPFS, and copy the link to the clipboard. http://ipfs.io" +arch=('x86_64' 'arm') +url="https://github.com/jbenet/ipfs-screencap" +license=('MIT') +groups=() +depends=('go-ipfs' 'xsel') +makedepends=() +source=("${pkgname%-git}::git+https://github.com/jbenet/$pkgname") +md5sums=("SKIP") +package() { + pwd + cd "$pkgname" + mkdir -p ${pkgdir}/usr/bin/ + cp ./portable-screencap ${pkgdir}/usr/bin/ + cp ./ipfs-screencap ${pkgdir}/usr/bin/ +} |