From ae64897ecd7565bf564b130016318da699d6c2cd Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 29 Apr 2011 09:45:12 +0200 Subject: [PATCH] pgkbuild for archlinux added --- PKGBUILD | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..4d4524c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Thomas Battermann +# PKGBUILD for ArchLinux + +pkgname=paste42 +pkgver=20110429 +pkgrel=1 +pkgdesc="Utility to post text files to paste42.de using curl" +arch=('i686' 'x86_64') +url="http://paste42.de/" +license=('GPL') +depends=('curl' 'bash') +source=("http://paste42.de/paste42.sh") +md5sums=('c0e08a4dbdca666cff77d9fa10fda7bd') +sha1sums=("5f73caf9cb36f65c8e192050ec7a4a5c7e19d8bc") + +build() { + install -D -m755 paste42.sh ${pkgdir}/usr/bin/paste42 || return 1 +}