# Description: libuecc, a very small elliptic curve cryptography library
# URL: http://universe-factory.net/libuecc 
# Maintainer:  Robin Krens, rakrens at gmail dot com 
# Depends on:  cmake

name=libuecc
version=7
release=1
source=(https://git.universe-factory.net/libuecc/snapshot/$name-$version.zip

build() {
    cd $name-$version
    mkdir build
    cd build
    cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
    make
    make DESTDIR=$PKG install
}
