1 # Maintainer: Dimitri 'Skypers' SABADIE <skypers@tuxfamily.org>
2 # Contributor: Dimitri 'Skypers' SABADIE <skypers@tuxfamily.org>
6 pkgdesc="A C++ wrapper for the ncurses C library"
9 url="http://git.tuxfamily.org/ncursesppw/ncursesppw.git"
12 depends=('ncurses>=5.7')
14 makedepends=('git' 'libstdc++5' 'boost')
19 md5sums=('e1c7a97f1be01946ad4dfa6b79e63dd8')
20 _gitroot="git://git.tuxfamily.org/gitroot/$pkgname/$pkgname.git"
24 msg "Getting sources from the git repository ..."
25 if [[ -d $pkgname ]] ; then
26 git pull master || return 1
29 git clone $_gitroot || return 1
30 msg "Sources downloaded"
37 mkdir -p $pkgdir/usr/lib/
38 mkdir -p $pkgdir/usr/include/ncursesppw/
39 #mkdir -p $pkgdir/usr/share/doc/$pkgname
40 #mkdir -p $pkgdir/usr/man/$pkgname
42 cp libncursesppw.so $pkgdir/usr/lib
43 cp -r include/ncursesppw/* $pkgdir/usr/include/ncursesppw/
45 #msg "Creating documentation and man ..."