blob: 369f9c1a46c6f803e75a0d923d7cbd9b47517842 (
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.32
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 }
|