blob: 25b1ae4898fc768b1b451db07140d55d75540a83 (
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
|
# $Id: PKGBUILD 103303 2014-01-02 22:42:11Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=flickcurl
pkgver=1.25
pkgrel=1
pkgdesc="C library for the Flickr API"
arch=(i686 x86_64)
url="http://librdf.org/flickcurl/"
license=('GPL')
depends=('raptor' 'curl')
source=(http://download.dajobe.org/flickcurl/flickcurl-$pkgver.tar.gz)
md5sums=('9598526f2b9a0a4619d1f1563300e72a')
build() {
cd "$srcdir/$pkgname-$pkgver"
sed -i 's|#include <curl/types.h>||' src/flickcurl_internal.h
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|