blob: 5c6a030ab5ccfcf7cd5ed46e8c190758b76cce5c (
plain)
1 # Description: Pipe commands to a pastebin site.
2 # URL: http://wgetpaste.zlin.dk/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=wgetpaste
6 version=2.30
7 release=1
8 source=(https://github.com/zlin/$name/archive/$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 install -Dm755 wgetpaste $PKG/usr/bin/wgetpaste
13 [ ! -e '/usr/bin/zsh' ] || install -Dm644 _wgetpaste $PKG/usr/share/zsh/site-functions/_wgetpaste
14 }
|