summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c768e7d189560d438e39d4044b18e6070afb0fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: DeathSec                        
pkgname=libresponse
pkgver=0.0.1 
pkgrel=1
pkgdesc="A Easy to use HTTP , HTTPS , FTP , SCP , SFTP Library for C/C++"
arch=('i686' 'x86_64')  
url="https://github.com/DeathSec/response"
license=('apache')
depends=('curl' 'cmake')
source=(https://github.com/deathsec/response/archive/v$pkgver.tar.gz)
sha256sums=('945ec206f354f7c3208b7055ac53670d1b282ae926d04259c9454cc274adb9f3')                                                                

build() {
        cd "response-$pkgver"    
        cmake . 
        make 
}
 
package() {
        cd "response-$pkgver"
        make DESTDIR="$pkgdir/" install
}