blob: 3a22dd13f3afbd54d8b8f7c0362b6ffefecc63d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=roundcubemail
pkgver=0.4
pkgrel=0
pkgdesc="A PHP web-based mail client"
url="http://www.roundcube.net"
license="GPL"
depends="php php-imap php-xml php-json"
makedepends=""
source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz"
build ()
{
_instdir="$pkgdir"/usr/share/webapps/roundcube
mkdir -p "${_instdir}"
cd "${_instdir}"
cp -ra "$srcdir"/roundcubemail-$pkgver/* .
}
md5sums="6e5d2313087ce1e1209eb0f4fd71beab roundcubemail-0.4.tar.gz"
|