summaryrefslogtreecommitdiff
path: root/community/fb-client/PKGBUILD
blob: 41293b975208c1438d133c8e8ce8e2d94d632d56 (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.0.2
pkgrel=1
pkgdesc="Client for paste.xinu.at"
arch=('i686' 'x86_64')
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=('b5b33d773b3145e4e2306e970d0b5ca1'
         '07ef0f054d05d74ad75336dc32b956e4')

build() {
  cd "$srcdir/fb-$pkgver"

  make
}

package() {
  cd "$srcdir/fb-$pkgver"

  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: