blob: 95425ace3b28f03a56eb0c6eb87909acca8806e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Commande pour envoyer du contenu texte sur un site 'pastebin'
# URL: http://wgetpaste.zlin.dk/
# Packager: Danny Rawlins <monster dot romster at gmail dot com>
# Maintainer: Blankoworld <blankoworld at wanadoo dot com>
name=wgetpaste
version=2.18
release=1
source=( http://wgetpaste.zlin.dk/$name-$version.tar.bz2 )
build() {
# adjust including files as per http://wgetpaste.zlin.dk/inst.bash
cd $name-$version
install -d $PKG/usr/bin
cat wgetpaste _wgetpaste > $PKG/usr/bin/wgetpaste
chmod +x $PKG/usr/bin/wgetpaste
}
|