blob: 52efadc22a7085fab658485835b05dcb20e6ef2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Florian "Bluewind" Pritz <flo@xssn.at>
pkgname=fb-client
pkgver=1.1.1
pkgrel=1
pkgdesc="Client for paste.xinu.at"
arch=('i686' 'x86_64' 'mips64el')
url="http://paste.xinu.at"
license=('GPL3')
depends=('curl')
optdepends=('xclip: for automatically copying the URL into the clipboard')
source=(http://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
md5sums=('d070595283130441bd06e2d9da1e0650'
'9342a474b215c917a1ee3c58794406b2')
build() {
cd "$srcdir/fb-$pkgver"
make
}
package() {
cd "$srcdir/fb-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|