updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / proty / PKGBUILD
blob7a83c5e18ba67c34178fbc95e265a0e93586cba0
1 # Maintainer: Thomas Gatzweiler <thomas.gatzweiler at gmail com>
2 pkgname=proty
3 pkgver=0.4
4 pkgrel=1
5 pkgdesc="A dynamic, prototype based programming language."
6 arch=(i686 x86_64)
7 url="http://www.proty.cc"
8 license=GPL3
9 depends=('readline')
10 makedepends=('cmake>=2.8')
11 source=("http://ftp.proty.cc/proty/$pkgver/$pkgname-$pkgver.tar.gz")
12 md5sums=("d48b39e24e5c3ceb33489d39a430e911")
14 build() {
15   cd "${srcdir}/${pkgname}-${pkgver}"
16   mkdir -p build
17   cd build
18   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
19   make || return 1
22 package() {
23   cd "${srcdir}/${pkgname}-${pkgver}/build"
24   make DESTDIR="${pkgdir}" install